#35098: 我女友叫我寫的


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

學校 : 不指定學校
編號 : 222548
來源 : [211.23.154.151]
最後登入時間 :
2023-05-26 09:35:45

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