# 引数 :hand1 ジャンケンの手「グー」「チョキ」「パー」のいずれかの文字列
#        hand2 ジャンケンの手「グー」「チョキ」「パー」のいずれかの文字列
# 戻り値 0 : hand1の勝ち
#        1 : hand1の負け
#        2 : あいこ
# 内容 :じゃんけんの手を比べて、戻り値に示す値を返す

def get_result(hand1, hand2):
    result = 0
    if hand1 == hand2:
        result = 2
    elif hand1 == "グー" and hand2 == "パー":
        result = 1
    elif hand1 == "チョキ" and hand2 == "グー":
        result = 1
    elif hand1 == "パー" and hand2 == "チョキ":
        result = 1
    else:
        result = 0	
    return result


# 引数  :hand1 ジャンケンの手「グー」「チョキ」「パー」のいずれかの文字列
#	  hand2 ジャンケンの手「グー」「チョキ」「パー」のいずれかの文字列
# 戻り値:なし
# 内容  :じゃんけんの手を比べて、hand1 から見た結果を表示する


def show_result(hand1, hand2):
    results = ["勝ち", "負け", "あいこ"]
    print(results[get_result(hand1, hand2)])