1
2
3
4
5
6
7
8
#!/usr/local/bin/python3.9

import sys

lines = sys.stdin.readlines()
a = int(lines[0])
b = int(lines[1])
print(a+b)