-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_check.cpp
More file actions
49 lines (40 loc) · 1.39 KB
/
git_check.cpp
File metadata and controls
49 lines (40 loc) · 1.39 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
45
46
47
#include<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define int long long
#define float double
#define pb push_back
#define mp make_pair
#define pii pair<int,int>
#define vi vector<int>
#define mi map<int,int>
#define pqb priority_queue<int>
#define pqs priority_queue<int,vi,greater<int> >
#define setbits(x) __builtin_popcountint(x)
#define zrobits(x) __builtin_ctzint(x)
#define mod 1000000007
#define inf 1e18
#define ps(x,y) fixed<<setprecision(y)<<x
#define mk(arr,n,type) type *arr=new type[n];
#define W(x) int x; cin>>x; while(x--)
#define fr(i, x, y) for (long long i = x; i < y; i++)
#define Fr(i, x, y) for (long long i = x; i >= y; i--)
#define fe(x,v) for(auto x:v)
#define nl "\n"
#define M 32
#define ti(type ,var) type var;cin>>var;
#define tii(n) int n;cin>>n;
template <typename T>
T * ta(T a[], int n) {
fr(i, 0, n)cin >> a[i];
return a;
}
int32_t main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
///////////////////////////////////////////////////////<<CODE BEGIN HERE>>
cout<<"git on windows"<<nl;
//////////////////////////////////////////////////////////////////////////
return 0;
}