Skip to content

Commit 6535830

Browse files
committed
create hello_luv2001.cpp
1 parent 82b19c9 commit 6535830

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

hello/hello_luv2001.cpp

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#include <bits/stdc++.h>
2+
#define db1(x) cout<<#x<<"="<<x<<'\n'
3+
#define db2(x,y) cout<<#x<<"="<<x<<","<<#y<<"="<<y<<'\n'
4+
#define db3(x,y,z) cout<<#x<<"="<<x<<","<<#y<<"="<<y<<","<<#z<<"="<<z<<'\n'
5+
#define rep(i,n) for(int i=0;i<(n);++i)
6+
#define repA(i,a,n) for(int i=a;i<=(n);++i)
7+
#define repD(i,a,n) for(int i=a;i>=(n);--i)
8+
#define push_back pb
9+
using ll = long long;
10+
11+
12+
using namespace std;
13+
using ll = long long;
14+
15+
/*
16+
Luvdipsingh Dadiyala
17+
*/
18+
19+
int main()
20+
{
21+
ios::sync_with_stdio(0);
22+
cin.tie(0);
23+
cout.tie(0);
24+
25+
cout << "Hello Open Source" << endl;
26+
}
27+
28+
29+
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
43+
44+

0 commit comments

Comments
 (0)