-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathC_Hamburgers.cpp
More file actions
52 lines (47 loc) · 1.01 KB
/
C_Hamburgers.cpp
File metadata and controls
52 lines (47 loc) · 1.01 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
#include <bits/stdc++.h>
#include <iostream>
#include <string>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
typedef vector<bool> vbl;
typedef vector<ll> vll;
typedef vector<vll> vvll;
typedef vector<string> vstr;
typedef vector<pll> vpll;
#define endl '\n'
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
constexpr ll mod = 1000000007;
inline void Parvez() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
template <class T> inline istream &operator>>(istream &in, vector<T> &v) {
for (T &x : v) {
in >> x;
}
return in;
}
template <class T> inline ostream &operator<<(ostream &out, vector<T> &v) {
if (v.empty())
return out;
for (ll i = 0; i < v.size() - 1; i++) {
out << v[i] << ' ';
}
out << v[v.size() - 1];
return out;
}
void solution(ll &T) {
string s;
cin >> s;
}
signed main() {
Parvez();
ll TT = 1;
// cin>>TT;
for (ll T = 1; T <= TT; T++)
solution(T);
return 0;
}