19 lines
414 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleForYakubinAndPrimchuk
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Oleg Top MVP EMEA");
Console.WriteLine("Pomidor");
Console.BackgroundColor = ConsoleColor.Green;
}
}
}