PROGRAMA PARA CLACULAR NOTA ENTRE DOS CURSOS Y DECIR CUAL ES MAYOR
Proceso promdio_en_dos_cursos_y_decir_el_mayor
Escribir "ingrese nota a";
Leer nota a;
Escribir "ingrese nota b";
Leer nota b;
si a>b Entonces
Escribir "nota a es mayor";
Sino
Escribir "nota b es mayor";
FinSi
FinProceso