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