-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-old-3.cpp
50 lines (43 loc) · 1.1 KB
/
template-old-3.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/***
* ____
* ____ ___ ____ ________ __/ __/
* / __ `__ \/ __ `/ ___/ / / / /_
* / / / / / / /_/ / / / /_/ / __/
* /_/ /_/ /_/\__,_/_/ \__,_/_/
*
* @link : https://maruftuhin.com
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define mem(a, b) memset(a, b, sizeof(a))
#define inf 1e9
#define eps 1e-9
#define mod 1000000007
#define NN 100010
// clang-format off
#ifdef redback
#define bug printf("line=%d\n",__LINE__);
#define debug(args...) {cout<<":: "; dbg,args; cout<<endl;}
struct debugger {template<typename T>debugger& operator , (const T& v) {cout << v << " "; return *this;}} dbg;
#else
#define bug
#define debug(args...)
#endif //debugging macros
// clang-format on
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
// #ifdef redback
// freopen("input.in", "r", stdin);
// freopen("output.in", "w", stdout);
// #endif
ll t = 1, tc;
// cin >> tc ;
ll n, m;
while (cin >> n) {
ll i, j, k;
cout << n << "\n";
}
return 0;
}