import random
computer =random.choice(['가위', '바위', '보'])
player = input()
if computer == player:
print("삐빅- 무승부 입니다.")
elif computer == "가위":
if player == "바위":
print("얏호-!!!!")
else:
print("ㅠㅜㅠ")
elif computer == "바위":
if player == "보":
print("얏호-!!!!")
else:
print("ㅠㅠㅠ")
elif computer == "보":
if player == "가위":
print("얏호-!!!!")
else:
print("ㅠㅠㅠ")
else:
print("가위 바위 보 중에서 하나를 입력하세요.")
댓글
0개댓글 쓰기
댓글을 작성하려면 로그인하세요.