fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <stdio.h>
  9.  
  10. int main()
  11. { int x;
  12. scanf("%d",&x);
  13. int a=x%10;
  14. a=1000*a;
  15. int b=x%10;
  16. b=100*b;
  17. int c=x%10;
  18. c=10*c;
  19. int d =x%10;
  20. printf ("%d",a+b+c+d);
  21.  
  22. return 0;
  23. }
Success #stdin #stdout 0.01s 5308KB
stdin
45
stdout
5555