Program ex_6 ;
///by:gil
var
n:integer;
 Begin
 writeln('Escreva um numero sff!');
 read(n);
 if n>100 then
 writeln(n)
 else
 writeln(0); 
 End.

