while True:
    try:
        str_input = input()
        
        print(eval(str_input))
        
    except:
        break