etc/Coding Test
[codeup] 98. 함께 문제 푸는 날
Jun's N
2021. 12. 28. 18:45
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)
728x90