#!python
import sys
#sys.path.append("..")
from ad import add

i = int(input("First number"))
j = int(input("Second number"))
print(add(i,j))

