fork download
  1. //machida yoshihiro
  2. //kadai 06
  3.  
  4. #include <stdio.h>
  5.  
  6. int main(void) {
  7. int a,b,c;
  8. a=3;
  9. b=5;
  10. c=a+b;
  11. printf("aとbの和=%d\n",c);
  12. return 0;
  13. }
  14.  
  15.  
Success #stdin #stdout 0s 4388KB
stdin
Standard input is empty
stdout
aとbの和=8