fork download
  1. import math
  2. n=0
  3. for x in range (31):
  4. n=x*(x-1)
  5. print(n)
  6.  
  7.  
Success #stdin #stdout 0.03s 6384KB
stdin
Standard input is empty
stdout
870