#~And Test~#
def int max(int a, int b){ if (a>b) return a; else return b; return 1;}
def int main(){ int x; x=max(5,7); print(x); return 2;}
