#include <stdio.h>

int main(void) {
	int x = 0;
	
printf("x = %d [GS: グロバル変数xの初期値は0]\n", x);

printf("x = %d [GS: グローバル変数xに101を代入]\n", x);

printf("x = %d [GS: mondai1でグローバル変数xに102を代入]\n", x);

printf("x = %d [GS: mondai2を3回呼び、静的変数cの値10、11、12をxに代入]\n", x);

printf("x = %d [LA: for文内で自動変数のローカルxにi=103を代入]\n", x);

printf("x = %d [LA: mondai3がdを103から104に増やし、その値をローカルxに代入]\n", x);

printf("x = %d [GS: mondai3内でグローバル変数xを12から13に増加]\n", x);
	
	return 0;
}
