fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int x;
  6.  
  7. printf("整数を入力してください:");
  8. scanf("%d", &x);
  9.  
  10. printf("それらの和は%dです。\n", x + 13);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5312KB
stdin
99
stdout
整数を入力してください:それらの和は112です。