using System;
public class Program
{
public static void Main()
Console.WriteLine("Введіть заробітну платню х=");
double x=double.Parse(Console.ReadLine());
x=x-x*0.2;
Console.WriteLine("Заробітна плата з урахуванням податку = "+x);
}