int m(int x,int y){int t;t=(x>y)?x:y;return t;}
main(){ int a,b,max; scanf("%d%d",&a,&b); max=m(a,b); printf("%d",max); getch();}