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