using System;
public class Program
{
public static void Main()
int salary;
double taxe_rate ,ta,sa;
Console.WriteLine("اخل الرقم الاول");
salary=int.Parse(Console.ReadLine());
Console.WriteLine("اخل الرقم الثاني");
taxe_rate=double.Parse(Console.ReadLine());
ta=taxe_rate*salary;
sa=salary-ta;
Console.WriteLine("the ta is {0}and sa{1}", ta, sa);
}