#30185: python 簡單的解答


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

學校 : 不指定學校
編號 : 184100
來源 : [140.128.169.42]
最後登入時間 :
2024-01-02 15:30:28
c461. apcs 邏輯運算子 (Logic Operators) -- apcs | From: [118.170.41.28] | 發表日期 : 2022-05-05 21:49

A=[]
a,b,c=map(int,input().split(' '))
if a!=0:
    a=1
if b!=0:
    b=1
if (a and b)==c:
    A.append('AND')
if (a or b)==c:
    A.append('OR')
if abs(a-b)==c:
    A.append('XOR')
if len(A)==0:
    print('IMPOSSIBLE')
else:
    for d in A:
        print(d)

 
ZeroJudge Forum