using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
enum Worker
{
Desire, Soul
}
class Program
{
static void Main(string[] args)
{
string name = "진 세이파츠";
string gender = "남성";
int age = 17;
int height = 178;
float weight = 75.8f;
string blood = "O형";
string birthday = "7월 28일";
Worker State = Worker.Desire;
Console.WriteLine("이름 : {0}", name);
Console.WriteLine("성별 : {0}", gender);
Console.WriteLine("나이 : {0}", age);
Console.WriteLine("신장 : {0}", height);
Console.WriteLine("체중 : {0}", weight);
Console.WriteLine("혈액형 : {0}", blood);
Console.WriteLine("생일 : {0}", birthday);
Console.WriteLine("{0}Worker", State);
}
}
}