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