# Rock-Paper-Scissors -- starter.
# Run with: python projects/rock-paper-scissors/starter.py

import random

print("Choose rock, paper, or scissors: ", end="")
player = input()

# TODO 1: pick the computer's move at random (1..3) and turn the number
#         into "rock", "paper", or "scissors" with if / elif / else.

# TODO 2: print what the computer chose.

# TODO 3: decide the result with if / elif / else:
#   - not a valid choice
#   - a tie (same move)
#   - you win (rock>scissors, paper>rock, scissors>paper)
#   - otherwise you lose
