#YF001. int类型与输入输出

int类型与输入输出

题目背景

本题是YF系列的第一题,也是你开始学习C++的第一步,加油!!!

题目描述

现在,需要你声明一个变量,语句如下:

int 变量名;

然后读入一个整数 nnint类型只能存不超过 2312^{31} 的整数,可以装负数),请你输出 nn

提示:请把代码写到两个大括号之间:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    
    return 0;
}

输入格式

仅一行,包含一个整数 nn

输出格式

仅一行一个整数 nn

1
1
2
2
1000
1000
2812
2812
99999
99999

提示

对于100%的数据,对于100\%的数据,105n105-10^5 \le n \le 10^5