int main() { long mul, k,a; for( mul=625, k=1; (mul/=10)>0; k*=10 ); a = k * 10; printf("%d %d ",a,k) ; return 0; }