forked from bajajvinamr/CodeForces-Solution
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathab.cpp
More file actions
35 lines (30 loc) · 659 Bytes
/
Copy pathab.cpp
File metadata and controls
35 lines (30 loc) · 659 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
#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 endl '\n'
#define mod 1000000007
#define pi 3.14159265358979323846
int bin(int x, int n){
int res = 1; x %= mod;
while(n){
if(n&1) res = (res*x) % mod;
x = (x*x) % mod;
n >>= 1;
}
return res;
}
void solve(){
}
signed main(){
fast
int t = 1;
// cin >> t;
for(int i = 1; i <= t; i++){
// cout << "Case #" << i << ": ";
solve();
}
}