#29865: python新手解答


422596@st.tc.edu.tw (殤)

學校 : 不指定學校
編號 : 184100
來源 : [140.128.169.42]
最後登入時間 :
2024-01-02 15:30:28
c382. 加減乘除 -- 板橋高中教學題 | From: [118.170.6.128] | 發表日期 : 2022-04-06 23:06

a,b,c=input().split(' ')

if b=='+':

    print(int(a)+int(c))

elif b=='-':

    print(int(a)-int(c))

elif b=='*':

    print(int(a)*int(c))

else:

    print(int(int(a)/int(c)))

 

 
ZeroJudge Forum