a, b, c = input().split()
a = int(a)
b = int(b)
c = int(c)
day = 1
i = 0
while i < 1:
if(day % a == 0 and day % b == 0 and day % c == 0):
break
day += 1
print(day)
'Codeup 기초 > Python' 카테고리의 다른 글
Codeup 1094 - 이상한 출석 번호 부르기2. (0) | 2020.02.15 |
---|---|
Codeup 1093 - 이상한 출석 번호 부르기1. (0) | 2020.02.15 |
Codeup 1091 - 수 나열하기3. (0) | 2020.02.15 |
Codeup 1090 - 수 나열하기2. (0) | 2020.02.15 |
Codeup 1089 - 수 나열하기1. (0) | 2020.02.15 |