using System;
public class Program
{
public static void Main()
int x;
double y,a,r;
Console.WriteLine("ادخل المبلغ");
x=int.Parse(Console.ReadLine());
Console.WriteLine("نسبة الضريبة");
y=int.Parse(Console.ReadLine());
a=x*y;
r=x-a;
Console.WriteLine(" مبلغ الضريبة{0}المبلغ المتبقي بعد خصم الضريبة{1}",a,r);
}