This program is a recreation of the game Rock-Paper-Scissors in Python. Here, the user plays against the program, which selects its moves from a predefined list containing the three moves using random.choice(). The user chooses his/her desired move by typing in raw input, and every possible outcome is covered by a series of if/elif/else condition statements.