forked from bajajvinamr/CodeForces-Solution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabc.cpp
More file actions
44 lines (37 loc) · 1.66 KB
/
Copy pathabc.cpp
File metadata and controls
44 lines (37 loc) · 1.66 KB
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
//////////////////////////////////////////////////////
// .-. //
// |_:_| //
// /(_Y_)\ //
//. ( \/M\/ ) //
// '. _.'-/'-'\-'._ //
// ': _/.--'[[[[]'--.\_ //
// ': /_' : |::"| : '.\ //
// ': // ./ |oUU| \.' :\ //
// ': _:'..' \_|___|_/ : :| //
// ':. .' |_[___]_| :.':\ //
// [::\ | : | | : ; : \ //
// '-' \/'.| |.' \ .;.' | //
// |\_ \ '-' : | //
// | \ \ .: : | | //
// | \ | '. : \ | //
// / \ :. .; | //
// / | | :__/ : \\ //
// | | | \: | \ | || //
// / \ : : |: / |__| /| //
// | : : :_/_| /'._\ '--|_\ //
// /___.-/_|-' \ \ //
// '-' //
//////////////////////////////////////////////////////
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define fast ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define pb push_back
#define ff first
#define ss second
#define rep(i,a,b) for(int i=a;i<b;i++)
#define repp(i,a,b) for(int i=a;i<=b;i++)
#define endl '\n'
signed main(){
fast
}