using System;
public class Program
{
public static void Main()
//On line 8 create an int variable heroHP and assign it a value of 50.
//On line 10 create an int variable enemyAT and assign it a value of 15.
//Complete the line below so that enemyAT is subtracted from heroHP.
heroHP = heroHP ;
//Use Console.WriteLine() to display the new value of heroHP.
//Create an int variable enemyPowerUp and assign it a value of 2.
//Complete the line below so that enemyAT is multiplied by enemyPowerUp.
enemyAT = enemyAT ;
//Subtract enemyAT from heroHP once more. HINT: it has the same structure as line 12 above.
//Use Console.WriteLine() to display the final value of heroHP.
}
// Run your program and screen shot the result
// Upload that screenshot to Remote Learning 2 in Google Classroom