CJCoding With Joseph

Rock Paper Scissors

Read two moves: player 1 on the first line and player 2 on the second line. Each move is rock, paper, or scissors. Rock beats scissors, scissors beats paper, and paper beats rock. Print Player 1 wins, Player 2 wins, or Tie. For example, for input rock then scissors, print:

Player 1 wins

Expected Output:

Player 1 wins
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
rock\nscissors
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.