using System;
public class Program
{
public static void Main()
double fixed_pay;
int call_amount;
double call_pay;
double total_pay;
fixed_pay = 58;
call_pay = 0.30;
Console.WriteLine("Please enter the number of call that you made");
call_amount = int.Parse(Console.ReadLine());
total_pay = call_pay * call_amount + fixed_pay;
Console.WriteLine("The total telephon pay is: " + total_pay);
}