#include int main(void){ int a,b; printf("aの値は?"); scanf("%d",&a); printf("b"); scanf("%d",&b); printf("a+b=%d",a+b); return 0; }