#include
main()
{float a,b,c;
ptintf(please input two number);
scanf("_",&a,&b);
if(a<b)c=a;
else c=b;
printf("the smaller is_",c);
}
#include
main()
{float a,b,c;
ptintf(please input two number);
scanf("%d%d",&a,&b);
if(a<b)c=a;
else c=b;
printf("the smaller is %d",c);
}