using System;
public class Program
{
public static void Main()
int Numdollar;
double Cost;
double Dsh;
Console.WriteLine("Enter the number of the dollars");
Numdollar=int.Parse(Console.ReadLine());
Console.WriteLine("Enter thr dollar vaue");
Cost=double.Parse(Console.ReadLine());
Dsh=Numdollar*Cost;
Console.WriteLine("Its worth :-{0}",Dsh);
}