#include <stdio.h>
#include <stdlib.h>
int main ()
{
// system(“color BE”);
int a,b,c,d; //VC声明变量前面不能有其他语句
system(“color BE”);
scanf("%d%d%d",&a,&b,&c);
// “system(“color BE”);”放在scanf,printf前面还是后面决定输入或输出框颜色是否变色
if (a <= b)
{
d = a;
}
else
{
d = b;
}
if (c <= d)
{
d = c;
}
// system(“color BE”);
printf("%d\n",d);
system(“pause”);
return 0;
}