fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int box;
  6.  
  7. printf("整数を入力:");
  8. scanf("%d", &box);
  9.  
  10. printf("和は%dです。\n", box + 13);
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5284KB
stdin
33
stdout
整数を入力:和は46です。