using System.Runtime.CompilerServices;internal class Program{ static void Main(string[] args) { //탱커 이름 string tankerName = "라인하르트"; //탱커 최대체력 int tankerMaxHp = 500; //탱커 체력부여 int tankerHp = tankerMaxHp; //탱커 피회복 int tankerRegenHp = 45; //탱커 체력퍼센트 int tankerHpPercent; //딜러 이름 string dealerName = "캐서디"; ..