fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {int a,b;
  4. scanf("%d %d",&a,&b);
  5.  
  6. printf("入力した整数は%d %dです¥n",a);
  7. return 0;
  8.  
  9. // your code goes here
  10.  
  11. }
  12.  
Success #stdin #stdout 0s 5292KB
stdin
1 2
stdout
入力した整数は1 0です¥n