Está en la página 1de 1

#include<stdio.

h>
int main()
{
int x=0;
int y=0;
printf("Ingrese un numero");
scanf("%i",&x);
printf("Ingrese un segundo numero");
scanf("%i",&y);
if(x<y)
{
printf("El numero menor es %i");
}
else
{
printf("El numero menor es %i");
}
return 0;
}

También podría gustarte