Advertisement
SuperMeatBoy

yandex file IO

Jun 21st, 2018
1,217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. with open('input.txt') as f:
  2. (a,b) = f.readline().split()
  3. fo = open('output.txt', 'w')
  4. fo.writelines(str(int(a)+(int(b))))
  5. fo.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement