public static void Main (String[] args)
Console.WriteLine("Jack 'en Poy");
Console.WriteLine("Select your option\n[1] Paper\n[2] Rock\n[3] Scissors");
Console.Write("Player one input: ");
inputPlayerOne = Console.ReadLine();
if (Int32.TryParse(inputPlayerOne, out playerOne) == true)
if (playerOne < 1 || playerOne > 3)
Console.WriteLine("Input error, please enter a correct player one input.");
Console.Write("Player two input: ");
inputPlayerTwo = Console.ReadLine();
if (Int32.TryParse(inputPlayerTwo, out playerTwo) == true)
if (playerTwo < 1 || playerTwo > 3)
Console.WriteLine("Input error, please enter a correct player two input.");
Console.WriteLine("It's a draw, there is no winner.");
Console.WriteLine("Player one wins");
Console.WriteLine("Player two Wins");
Console.WriteLine("Input error, please enter a correct player two input.");
Console.WriteLine("Player two wins");
Console.WriteLine("It's a draw, there is no winner.");
Console.WriteLine("Player one wins.");
Console.WriteLine("Input error, please enter a correct player two input.");
Console.WriteLine("Player one wins.");
Console.WriteLine("Player two wins.");
Console.WriteLine("It's a draw, there is no winner.");
Console.WriteLine("Input error, please enter a correct player two input");
Console.WriteLine("Input error, please enter a correct player one input.");
Console.WriteLine("Invalid input, letters or special characters are not allowed.");
Console.WriteLine("Invalid input, letters or special characters are not allowed.");