fork download
  1. i = j = x = 0
  2. for i in range(1, 6):
  3. for j in range(i + 1, 6):
  4. x += 1
  5. print (x)
Success #stdin #stdout 0.07s 14016KB
stdin
Standard input is empty
stdout
10