a=int(input())
if a<10: res=a+2elif a<50: res=a-2elif a<80: res=a*2else: res=a//2print(res)程序运行时,输入60,程序执行的结果是?()
62
58
120
30