fork download
  1. t = int(input())
  2.  
  3. i=0
  4. while i < t:
  5. x = list(map(int, input().split()))
  6. if(len(x) == 1):
  7. continue
  8. elif(len(x) > 1):
  9. print(sum(x))
  10. i += 1
Runtime error #stdin #stdout #stderr 0.13s 23652KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
    t = int(input())
EOFError: EOF when reading a line