fork download
  1. // compile with: gcc -W -Wall -Wextra -pedantic -std=c11 -O3 -s -march=native
  2.  
  3. #include <stdio.h>
  4.  
  5. int main()
  6. {
  7. char s[128]; int n;
  8. while (fscanf(stdin, "%127s %d", s, &n) == 2) { }
  9. }
  10.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
Standard output is empty