using System;
public class Program
{
public static void player()
int health = 100;
}
public static void fight(string monst)
bool dead = false;
Console.WriteLine("You are being attacked by {0}.", monst);
while(!dead)
public static void Main()
string monst = "Toilet Monster";
fight(monst);