Skip to content

Instantly share code, notes, and snippets.

@sifue
Created September 9, 2017 20:01
Show Gist options
  • Save sifue/662690b5003143cae3ac7b55ff7daaf6 to your computer and use it in GitHub Desktop.
Save sifue/662690b5003143cae3ac7b55ff7daaf6 to your computer and use it in GitHub Desktop.
競技プログラミング用C++テンプレート 20170909
#include <bits/stdc++.h> // g++ -std=c++14 -o a a.cpp
using namespace std;
typedef pair<int, int> P;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD 1000000007
#define DEBUG(x) cout << #x << ": " << x << endl;
int main() {
int n;
cin >> n;
cout << n << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment