#include<bits/stdc++.h>
using namespace std;
inline int read()
{
int x=0,f=1; char ch=getchar();
while(ch<\'0\'||ch>\'9\'){if(ch==\'-\') f=-1; ch=getchar();}
while(ch>=\'0\'&&ch<=\'9\'){ x=(x<<1)+(x<<3)+(ch^48); ch=getchar();}
return x*f;
}
void write(int x)
{
if(x<0) putchar(\'-\'),x=-x;
if(x>9) write(x/10);
putchar(x%10+\'0\');
}
int main()
{
int n;
n=read();
write(n);
return 0;
}
快读快写 2021.5.23
Posted 飞。畅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快读快写 2021.5.23相关的知识,希望对你有一定的参考价值。
以上是关于快读快写 2021.5.23的主要内容,如果未能解决你的问题,请参考以下文章