#include
int main(void)
{
int a = 3,b = 6,c = 2;
int m;
m = a;
if (b < m)
m = b;
if (c < m)
m = c;
printf("%d",m);
}