SQR by recursive

while 1:
 a,b=map(int,raw_input().split());s=0
 while a*b:s+=a*b;a-=1;b-=1
 print s

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page