fork download
  1. #include <stdio.h>
  2.  
  3. /**
  4. I'm Slim Shady. Yes, I'm the real Shady.
  5. All you other Slim Shadys are just imitating.
  6. So, won't the real Slim Shady please stand up?
  7. Please stand up. Please stand up.
  8. **/
  9.  
  10. char*s="I'm";
  11. char*h="Slim";
  12. char*a="Shady";
  13. char*d="real";
  14. char*y="lease stand up";
  15.  
  16. f(){printf("%s %s %s. Yes, %s the %s %s.\n\\
  17. All you other %s %ss are just imitating.\n\\
  18. So, won't the %s %s %s p%s?\n\\
  19. P%s. P%s.",
  20.  
  21. // S H A D Y
  22.  
  23. s,
  24. h,
  25. s,
  26. d,
  27. a,
  28. h,
  29. a,
  30. d,
  31. d,
  32. h,
  33. a,
  34. y,
  35. y,
  36. y
  37.  
  38. // S H A D Y
  39.  
  40. );}int main(){f();return 0;}
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
I'm Slim I'm. Yes, real the Shady Slim.
All you other Shady reals are just imitating.
So, won't the real Slim Shady please stand up?
Please stand up. Please stand up.