Pendulum by Nose

#include <stdio.h>

int main( int i, char** argv )
{
   if( 51-i )
   {
      printf( "%d\n%d\n", 51-i, i+50 );
      return main( ++i, NULL );
   }
   return 1;
}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page