Advertisement
xah

Addition puzzle

xah
Mar 23rd, 2017 (edited)
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #this code adds two numbers in input.
  2.  
  3. numb = int(input())
  4.  
  5. for n in range(numb):
  6.     a = int(input())
  7.     b = int(input())
  8.     print(a+b)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement