1
0
forked from newde/homework
Files
homework/666/02.2.0.cpp
hehe 17ac063f22 镇乃天子
镇乃天子
2026-03-28 05:34:35 -04:00

19 lines
362 B
C++

#include<iostream>
using namespace std;
void bjdx(int a,int b){
if(a>b)
cout<<a<<"大大大大大大大大大大大大大大大大大大大大大大大大大"<<endl;
else
cout<<b<<"大大大大大大大大大大大大大大大大大大大大大大大大大"<<endl;
}
int main(){
int a,b;
cin>>a>>b;
bjdx(a,b);
return 0;
}