using System;
namespace IntroOfMine
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Your name:");
var name = Console.ReadLine();
Console.WriteLine("Age:");
var age = Console.ReadLine();
Console.WriteLine("Work years :");
var workYears = Console.ReadLine();
Console.WriteLine("Your skills: ");
var skills = Console.ReadLine();
intro(name, age, workYears, skills);
Console.ReadKey();
}
static void intro(string name, string age, string workYears, string skills)
{
Console.WriteLine(String.Format("My name is{0}, {1} years old. I've worked {2} years. Here are my skills{3}. I love coding. Nice to meet you."
, name, age, workYears, skills));
}
}
}