Q

codeup 1023

codeup 1023번 문제

codeup 1023번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int main()
{
int a, b;

scanf("%d.%d", &a, &b);

printf("%d\n%d",a ,b);

return 0;
}