-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA_Constructive_Problems.cpp
36 lines (31 loc) · 1.89 KB
/
A_Constructive_Problems.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
~~~~~~~~~~~~{ after 1 Year of Pause, I am back : ) }~~~~~~~~~~
I will fall .... Yep free fall : ) .... I will go up again ! ...
Always proud of my efforts in past - 2nd Year(Start of cp) -- 3rd Year(till 1st sem)
Last 6 month of college ... want to look back and smile : ) , No Regret
*/
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define all(x) begin(x) , end(x)
#define nl "\n"
// #include"/home/dk/debugging.h"
void solve(int& __case__)
{
int a , b ; cin >> a >> b ;
cout << max(a,b) << nl ;
}
signed main()
{ ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL);
int testCases = 1 , case_ = 1;
cin >> testCases; for (int case_ = 1; case_ <= testCases; case_++)
solve(case_);
}
/*
██████╗ ██╗██████╗ █████╗ ███╗ ██╗██╗ ██╗ █████╗ ██████╗
██╔══██╗██║██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝██╔══██╗██╔══██╗
██║ ██║██║██████╔╝███████║██╔██╗ ██║█████╔╝ ███████║██████╔╝
██║ ██║██║██╔═══╝ ██╔══██║██║╚██╗██║██╔═██╗ ██╔══██║██╔══██╗
██████╔╝██║██║ ██║ ██║██║ ╚████║██║ ██╗██║ ██║██║ ██║
╚═════╝ ╚═╝╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝
*/