A, B = input().split() SUM = 0 if A.isdigit(): SUM += int(A) if B.isdigit(): SUM += int(B) print(SUM)