NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1092 : [기초-종합] 함께 문제 푸는 날1

1nfra 2019. 7. 24. 04:18
728x90
1
2
3
4
5
6
7
8
#include <stdio.h>
int main() {
    int a, b, c, day = 1;
    scanf("%d%d%d"&a, &b, &c);
    while (day%a != 0 || day%b != 0 || day%c != 0) day++
    printf("%d", day);
}
 
cs
728x90