fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. short int n,x;
  6. scanf("%hd",&n);
  7. scanf("%hd",&x);
  8. printf("%d %d", n, x);
  9. return 0;
  10. }
Success #stdin #stdout 0s 9424KB
stdin
15
14
stdout
15 14