[UVA] 11407 - Squares
Squares
For any positive integer N
,
N = a12 + a22 +...+ an2
that is,
any positive integer can be represented as sum of squares of other numbers.
Your task is to print the smallest `n
' such that
N = a12 + a22 +...+ an2
.
Input
...