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.