#include int main(void) { int a, b, N; a = 0; b = 0; while (a < 3) { a++; b = b + a; } printf("合計は%d", b); return 0; }