using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Green;
Console.Write("Введите свое имя: ");
Console.ForegroundColor = ConsoleColor.Red;
string name = Console.ReadLine();
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write("Введите основание параллелограмма: ");
Console.ForegroundColor = ConsoleColor.Red;
int a = Convert.ToInt32(Console.ReadLine());
Console.ForegroundColor = ConsoleColor.Blue;
Console.Write("Введите высоту параллелограмма: ");
Console.ForegroundColor = ConsoleColor.Red;
int h = Convert.ToInt32(Console.ReadLine());
int S = a * h;
Console.ForegroundColor = ConsoleColor.White;
Console.Write("\n\nПриветствую тебя, ");
Console.ForegroundColor = ConsoleColor.Red;
Console.Write(name + "!");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("\n\nПлощадь параллелограмма находится по формуле S = a * h");
Console.WriteLine("В вашем случае S = " + a + " * " + h + " = " + S);
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("\nВсего доброго!");
Console.ReadKey();
}
}
}