public static void Main()
Console.WriteLine("Enter the amount of dollars: ");
Dollars_amount = double.Parse(Console.ReadLine());
Console.WriteLine("Enter the price of a dollar in nis: ");
Dollar_price = double.Parse(Console.ReadLine());
Console.WriteLine("=================================================");
Console.WriteLine("The total price of the dollars in nis is: " + (Dollar_price*Dollars_amount));