Note

[codeup] 98. 함께 문제 푸는 날 본문

etc/Coding Test

[codeup] 98. 함께 문제 푸는 날

알 수 없는 사용자 2021. 12. 28. 18:45
728x90
a,b,c = map(int, input().split())
d = 1
while d%a!=0 or d%b!=0 or d%c!=0 :
  d += 1
print(d)

 

Comments