etc/Coding Test
[codeup] 118. 7의 배수
Jun's N
2022. 1. 17. 16:20
n = int(input())
if n%7 == 0:
print('multiple')
else:
print('not multiple')
728x90