看了·题想必大家都会把 不多解释了

#include using namespace std;

int main() {

// write your code here......
int a,b;
scanf("%d%d",&a,&b);
if(a>b)
    printf("%d",a);
else
    printf("%d",b);

return 0;

}