forked from itsharshitb/Hacktober_Fest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloworld.cpp
More file actions
70 lines (51 loc) · 1.28 KB
/
helloworld.cpp
File metadata and controls
70 lines (51 loc) · 1.28 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include<bits/stdc++.h>
#include<math.h>
#include<string.h>
#include<vector>
#include<stdlib.h>
using namespace std;
#define pb push_back
#define fz(i,a,b) for(ll i=a; i<b; i++)
#define bz(i,a,b) for(ll i=a-1; i>=b; i--)
#define debug(x) cout << #x << " " << x << endl;
typedef long long int ll;
typedef long double lld;
/*#define debug(x);
printf(x);*/
void init()
{
#ifndef ONLINE_JUDGE
freopen("input.txt" , "r" ,stdin);
freopen("output.txt" , "w" ,stdout);
#endif
}
void debugger()
{
#ifndef ONLINE_JUDGE
freopen("input.txt" , "r" ,stdin);
freopen("output.txt" , "w" ,stdout);
#endif
#ifdef debugger
#define debug(x) cerr << #x<<" "; _print(x); cerr << endl;
#else
#define debugger(x);
#endif
}
const int MAXN = (int)((1e5) + 100);
int gcd(int a, int b) { if (a == 0) return b; return gcd(b % a, a);}
int max(int a, int b) {if (a > b) return a; else return b;}
int min(int a, int b) {if (a < b) return a; else return b;}
void precision(int a)
{
cout << setprecision(a) << fixed;
}
//** pritishcf307 **//
//**------------------------------------------------------------------------------------------------------**//
//airline restriction codechef
int main()
{
init();
cout << "hello world" << endl;
cout << "hi" << endl;
}
// thank you