Anyone know what the MSRP prices are for the new MINI in Canada?

N8Magic

Lifer
Dec 12, 2000
11,624
1
81
Just curious. Cooper and Cooper S models please. :D (or a link to a site that has all the goodies)
 

Howard

Lifer
Oct 14, 1999
47,982
10
81
PROGRAM MiniPriceConverter;
var canprice : longint;
usprice : longint;

BEGIN
writeln('give me the damn price of the mini cooper in US dolla');
readln(usprice);
canprice := usprice x 1.5;
writeln('the canadian price of the mini cooper is',canprice,'.');
END.