#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b;
scanf("%d-%d", &a, &b);
printf("%d%d", a, b);
return 0;
}
000000788-23444
입력하면
00000078823444
로 나와야 하는데
78823444 이렇게 나오는데 이유를 모르겠음

#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b;
scanf("%d-%d", &a, &b);
printf("%d%d", a, b);
return 0;
}
000000788-23444
입력하면
00000078823444
로 나와야 하는데
78823444 이렇게 나오는데 이유를 모르겠음
