Start: Nov, 12, 2017 10:00:00
2017秋Python程序设计基础培训第四次作业
End: Nov, 19, 2017 12:00:00
Time elapsed:
Time remaining:

Problem_ID: F
Result: Accepted
Time: 84ms
Memory: 24432kB
Author: 378991029
In contest: 1124

def add(a,b):
    return a+b

def max(a,b):
    if a>=b:
        return a
    else:
        return b
    
def min(a,b):
    if a>=b:
        return b
    else:
        return a
    
list=[]  
n=int(input())
while n>0:
    n-=1
    a=input()
    list.append(eval(a))
for i in list:
    print(i)