-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyTemplate.cc
47 lines (34 loc) · 899 Bytes
/
myTemplate.cc
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
/*
Author: Anmol
*/
#include<bits/stdc++.h>
// #define loop(i,n) for (i=0; i<n; ++i)
// #define loop_k(i,k,n) for (i=k; i<=n; ++i)
// #define loop_r(i,k,n) for (i=k; i>=n; --i)
//
// #define watch(x) cout << (#x) << " is " << (x) << endl
// #define watchLoop(v) for(int i = 0; i < v.size(); i++) cout << v[i] << " \n"[i == v.size()-1];
// #define all(v) (v).begin(), (v).end()
//
// #define INF numeric_limits<int>::max()
// #define INFLL numeric_limits<long long int>::max()
//
#define pb push_back
#define endl '\n'
#define MAX 100000
#define MOD 100000007
# define my_sizeof(type) ((char *)(&type+1)-(char*)(&type))
typedef long long int ll;
typedef long double ld;
#define f_boot ios_base::sync_with_stdio(false); cin.tie(NULL);
using namespace std;
int main(void)
{
f_boot
ll n =7;
//cin>>n;
while(n--){
cout<<"code"<<" ";
}
return 0;
}