using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hello_World
{
internal class Program
{
static void Main(string[] args)
{
string nickname = "리나";
Console.WriteLine("이름 : {0}", nickname);
int maxSpeed = 1;
Console.WriteLine("최고속도 = {0}", maxSpeed);
int acceleration = 6;
Console.WriteLine("가속도 = {0}", acceleration);
int power = 2;
Console.WriteLine("힘 = {0}", power);
int control = 5;
Console.WriteLine("컨트롤 = {0}", control);
}
}
}