#include int getMax(int a, int b){ return a<=b ? b : a;}int main(){ int a, b; scanf("%d%d", &a, &b); printf("Max = %d", getMax(a, b)); return 0;}