int a = 1; // 整数 a に 1 を代入 int b = 2; // 整数 b に 2 を代入 int c = a + b; // 整数 c に a + b を代入 print(c); // c の内容を画面に出力