//
// ひきざんをするよ
//

func main() {
    a = 3;
    b = 1;
    c = a - b;

    print("c = " + c);
}
