#include main() { int a,b, max; scanf("%d%d",&a,&b); switch(a>b) { case 0:max=b;break; case 1:max=a; } printf("\nmax=%d\n",max); }