#include<stdio.h> int main() { int a; int b; int max; scanf("%d%d",&a,&b); max=(a>b)?a:b; printf("max=%d\n",max); return 0; }