Hi!
I can not solve this JAVA problem.
I tried to write:
final int a=100;
int nbr=Input.readInt();// from keyboard
I try to find (nbr*nbr)>a
ex: nbr=11 and 11*11=121
12*12=144
10*10=100
Output must be 121, not 144 but 144 is also >100
thanks
Peter