public static void Main()
Console.Write(" Ingrese el tiempo en minutos: ");
TIEMPO = int.Parse(Console.ReadLine());
Console.WriteLine(" EL PRECIO ES 6 SOLES ");
Console.WriteLine(" EL PRECIO ES 5 SOLES ");
PRECIO = (((TIEMPO % 60) * 0.15) + 6 * (TIEMPO / 60));
Console.WriteLine(" EL PRECIO ES: " + PRECIO);