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