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