fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a, b, c, d, e;
  5. scanf("%1d%1d%1d%1d%1d", a, b, c, d, e);
  6. printf("[%d]\n[%d]\n[%d]\n[%d]\n[%d]\n", a*10000, b*1000, c*100, d*10, e);
  7.  
  8.  
  9. return 0;
  10. }
  11.  
  12.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
[0]
[0]
[0]
[0]
[0]