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 drift = 676;
Console.WriteLine("드리프트 : {0}", drift);
int speed = 684;
Console.WriteLine("가속도 : {0}", speed);
int curve = 682;
Console.WriteLine("커브 : {0}", curve);
int speedtime = 784;
Console.WriteLine("가속시간 : {0}", speedtime);
int gaugespeed = 654;
Console.WriteLine("게이지 속도 : {0}", gaugespeed);
}
}
}