void FunctionMax(int a,int b){ if(a>b) printf("最大值为%d",a) else printf("最大值为%d",b)}void main(){ int a,b; scanf("%d%d",&a,&b); FunctionMax(a,b);}