document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2.  
  3. main( )
  4.  
  5. { int x= 1;
  6.  
  7. while (x <= 5) {
  8.  
  9. printf("%i", x );
  10.  
  11. x++; }
  12.  
  13. }
');