Created
September 15, 2014 01:57
-
-
Save shohan4556/07df9ce7f26c7961403d to your computer and use it in GitHub Desktop.
codeshef.comlife-universe-everything
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() { | |
int i = 0; | |
while (scanf("%d\n", &i) > 0 && i != 42) { | |
printf("%d\n", i); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment