Note

[codeup] 118. 7의 배수 본문

etc/Coding Test

[codeup] 118. 7의 배수

알 수 없는 사용자 2022. 1. 17. 16:20
728x90
n = int(input())
if n%7 == 0:
  print('multiple')
else:
  print('not multiple')
Comments