Create 1359.c

pull/15/head
KiritoTRw 2016-05-22 23:02:36 +08:00
parent 921f9277ba
commit 3a84d2d28c
1 changed files with 8 additions and 0 deletions

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;
}