Algoritmo detarea Definir tiempo Como Entero Definir total como real escribir "Ingresa el tiempo en minutos de la llamada" leer tiempo si tiempo > 0 Entonces si tiempo > 3 Entonces total = 2.50 + ((tiempo - 3) * 1.50) SiNo total = 2.50 FinSi Escribir "El total a pagar por ",tiempo," minutos es: $",total SiNo Escribir "Ingresa un tiempo mayor a 0" FinSi FinAlgoritmo