#35098: 我女友叫我寫的


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


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