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