public static void Main()
Random rnd = new Random();
Console.WriteLine("You Go On Quest, But What For? You're Options Are 1 For Hunting a Bob or 2 For Getting Some Apples.");
int choice = Convert.ToInt16(Console.ReadLine());
int BobAttack = rnd.Next(1,10);
Console.WriteLine("As Go On a Hunt You see a Wild Bob and Approach.");
Console.WriteLine("The wild Bob corners you, You're Options Are 1 For Attack or 2 For Run.");
int choice2 = Convert.ToInt16(Console.ReadLine());
if(choice2 == 1 && PlayerAttack>BobAttack){Console.WriteLine("The Bob Cries, You Hurt It's Feelings.");}
else{Console.WriteLine("The Bob Wins, And Eats You.");};
if (choice == 2){Console.WriteLine("The Bob Uses Laser Eyes To Instant Kill You, Game Over.");};
Console.WriteLine("On The Quest For Apples, You're Options Are 1 For Going To The Shops or 2 For Picking Them Yourself.");
int choice2 = Convert.ToInt16(Console.ReadLine());
if(choice2 == 1){Console.WriteLine("The Shops Were A Trap, The Wild Bob Hunts And Kills You Game Over.");};
if (choice2 == 2){Console.WriteLine("You Take Some Nice Apples Home, However They Were Poisoned, Game Over.");};