Create 1359.c

This commit is contained in:
KiritoTRw 2016-05-22 23:02:36 +08:00
parent 921f9277ba
commit 3a84d2d28c

8
QUSTOJ/1359.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
int inc;
scanf("%d",&inc);
printf("%d %d %d %d \n",inc/1000,(inc%1000)/100,(inc%100)/10,inc%10);
return 0;
}