import operator def main(): a, b = map(int, input().split()) print(operator.add(a, b)) if __name__ == '__main__': main()