using System.Collections.Generic;
using System.Threading.Tasks;
public class RockPaperScissors
public static void Main()
string playerInput, cpuInput;
Console.WriteLine("Choose Rock, Paper, or Scissors: ");
playerInput = Console.ReadLine();
Random rand = new Random();
randNum = rand.Next(1, 4);