The World's Most Misunderstood Programming Language
#include <stdio.h> int main(){ int i; while( 1 ){ scanf("%d", &i); if( i == 42 ) break; printf("%d\n", i); } return 0; }