12 lines
183 B
C++
12 lines
183 B
C++
|
#include<bits/stdc++.h>
|
||
|
using namespace std;
|
||
|
|
||
|
void solve() {
|
||
|
int n, m; cin >> n >> m;
|
||
|
cout << max(n, m) << endl;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
int t; cin >> t;
|
||
|
while(t--) solve();
|
||
|
}
|