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