program mn;

uses crt;

var n:real;

BEGIN

ClrScr;

Write('Verst:');

readln(n);

n:=n*1066.8;

Writeln('Kilometrov:',n:2:1);

readln;

END.