forked from divyaverma11/PSQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
37 lines (27 loc) · 828 Bytes
/
Copy pathtemplate.cpp
File metadata and controls
37 lines (27 loc) · 828 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
31
32
33
34
35
36
37
/*
|
,-| ,-. . , ,-. ,-. ,-. ,-.
| | ,-| X | | | | | | |
`-' `-^ ' ` `-' ' `-' ' '
| |
__| | __ ___ _____ _ __ ___ _ __
/ _` |/ _` \ \/ / _ \| '__/ _ \| '_ \
| (_| | (_| |> < (_) | | | (_) | | | |
\__,_|\__,_/_/\_\___/|_| \___/|_| |_|
_____ ____ __ __ _____ _____ _____ ____ _
| \ | \ \ ` / / \ | | / \ | \ | |
| \ | \ / \ | | | \ | | | \| |
|______/ |__|\__\ /__/\_\ \_____/ |__|\__\ \_____/ |__/\____|
*/
#include <bits/stdc++.h>
#define test long long int t; cin >> t; while (t--)
using namespace std;
int main(){
//InputOutput
ios_base::sync_with_stdio(false);
cin.tie(NULL);
//Testcases
test{
}
return 0;
}