-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA_I_Wanna_Be_the_Guy.cpp
More file actions
30 lines (28 loc) · 927 Bytes
/
A_I_Wanna_Be_the_Guy.cpp
File metadata and controls
30 lines (28 loc) · 927 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
/*
``````````````
``` আরেহ বস ```
``` ভালো তোহ ```
``` ? ```
``` ```
``` ```
````````````
*/
#include<bits/stdc++.h>
using namespace std;
int t, count;
#define ll long long
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define cout(n) cout << n << endl;
#define TestCase cin >> t; while(t--)
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
TestCase{
int n; cin >> n;
cout(n)
}
return 0;
}