#include <stdio.h>
#include <conio.h>
int main(void){
char opcion='0';
printf("Ingrese un n£mero del 1 al 5: ");
while(opcion<'1' || opcion>'5') opcion=getch();
printf("\nLa opci¢n ingresada es: %c",opcion);
}