-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp.cpp
More file actions
37 lines (31 loc) · 625 Bytes
/
Copy pathp.cpp
File metadata and controls
37 lines (31 loc) · 625 Bytes
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
37
#include <iostream>
#include <algorithm>
#include <set>
#include <stack>
#include <vector>
#include <string>
#include <cmath>
#include <deque>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <list>
#include <map>
using namespace std;
#define SYNC \
ios_base::sync_with_stdio(false); \
cin.tie(0); \
cout.tie(0);
#define inf 0x3f3f3f3f
#define INF 1000111000111000111LL
#define mod 1000000007
#define pi acos(-1.0)
#define eps 1e-8
#define endl '\n'
int main()
{
SYNC
int a = INT_MAX * 10 + 1;
cout << a;
return 0;
}