Var A, n: integer;x: real; begin read(A); n := 0; for n := 1 to A do begin x := power(5, n); if x <= A then<br> writeln(n); end; end.