NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1128 : n * 123456789

1nfra 2020. 5. 3. 00:50
728x90
1
2
3
4
5
6
7
8
#include <stdio.h>
 
int main()
{
    int i;
    scanf("%d"&i);
    printf("%lld", i * 123456789LL);
}
cs
728x90