-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemplate.cpp
More file actions
41 lines (32 loc) · 873 Bytes
/
Template.cpp
File metadata and controls
41 lines (32 loc) · 873 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
38
39
40
#include "bits/stdc++.h"
#include <cstdint>
#define F first
#define S second
#define PG push_back
#define PPB pop_back
#define PF push_front
#define MP make_pair
#define REP0(i,a,b) for (int i = a; i < b; i++)
#define REP1(i,a,b) for (int i = a; i <= b; i++)
#define PPC __builtin_popcount
#define PPCLL __builtin_popcountll
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int,int> pi;
const ll INF = 1e18;
const int32_t M = 1e9+7;
const int32_t MM=998244353;
template<typename T>
void Print(T value){
cout << values <<"\n";
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
Print<int>(5);
int a,b;
string x;
cin >> a >> b >> x;
cout << a << " " << b << " " << x << "\n";
}