def main(): import sys input = sys.stdin.readline a, b = input().split() print(eval(a + b)) if __name__ == '__main__': main()