program z;
uses crt;
const s=100;
var a,b,c:integer;
BEGIN
clrscr;
writeln('vvesti');
readln(a);
c:=a div s;
writeln('c=' ,c);
readln;
END.