fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int ignore; char c;
  5. int a = scanf("%d", &ignore);
  6. int b = scanf("%c", &c);
  7. printf("%d %d %c\n", a, b, c);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4288KB
stdin
       A
stdout
0 1 A