Last active
April 6, 2019 12:43
-
-
Save the-redback/5e6e1ce4aa4fd797173386ad4d96e84f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
* ____ | |
* ____ ___ ____ ________ __/ __/ | |
* / __ `__ \/ __ `/ ___/ / / / /_ | |
* / / / / / / /_/ / / / /_/ / __/ | |
* /_/ /_/ /_/\__,_/_/ \__,_/_/ | |
* | |
* @link : https://maruftuhin.com | |
*/ | |
#include "bits/stdc++.h" | |
using namespace std; | |
typedef long long ll; | |
typedef unsigned long long llu; | |
#define ft first | |
#define sd second | |
#define mp make_pair | |
#define pb(x) push_back(x) | |
#define all(x) x.begin(),x.end() | |
#define allr(x) x.rbegin(),x.rend() | |
#define mem(a, b) memset(a,b,sizeof(a)) | |
#define sf(a) scanf("%lld",&a) | |
#define ssf(a) scanf("%s",a) | |
#define sf2(a, b) scanf("%lld %lld",&a,&b) | |
#define sf3(a, b, c) scanf("%lld %lld %lld",&a,&b,&c) | |
#define inf 1e9 | |
#define eps 1e-9 | |
#define mod 1000000007 | |
#define NN 100010 | |
#ifdef redback | |
#define bug printf("line=%d\n",__LINE__); | |
#define debug(args...) {cout<<":: "; dbg,args; cerr<<endl;} | |
struct debugger {template<typename T>debugger& operator , (const T& v) {cerr << v << " "; return *this;}} dbg; | |
#else | |
#define bug | |
#define debug(args...) | |
#endif //debugging macros | |
int main() { | |
#ifdef redback | |
freopen("input.in", "r", stdin); | |
freopen("output.in", "w", stdout); | |
#endif | |
ll t = 1, tc; | |
//sf(tc); | |
ll n, m; | |
while (~sf(n)) { | |
ll i, j, k; | |
printf("%lld\n", n); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment