Skip to content

Instantly share code, notes, and snippets.

@shohan4556
Created September 15, 2014 01:57
Show Gist options
  • Save shohan4556/07df9ce7f26c7961403d to your computer and use it in GitHub Desktop.
Save shohan4556/07df9ce7f26c7961403d to your computer and use it in GitHub Desktop.
codeshef.comlife-universe-everything
#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