#35098: 我女友叫我寫的


10955052@st.chjhs.tp.edu.tw (07段律言)

學校 : 不指定學校
編號 : 222548
來源 : [211.23.154.151]
最後登入時間 :
2023-05-26 09:35:45
d235. 10929 - You can say 11 -- UVa10929 | From: [210.243.21.253] | 發表日期 : 2023-05-08 20:43

try :
    while True:
        a = input()
        if int(a) > 0:
            if int(a) % 11 == 0:
                print('%s is a multiple of 11.' % (a))
            else:
                print('%s is not a multiple of 11.' % (a))
        else:
            break
except EOFError:
    pass
 
ZeroJudge Forum