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 = 16;
int height = 152;
float weight = 41.1f;
string blood = "A형";
string birthday = "3월 2일";
Worker State = Worker.Soul;
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);
}
}
}