#include <iostream>
using namespace std;
class Test
{
Public:
Test(int aa){
______________
}
int Getx(){
_______________
}
private:
int x;
};
int main()
{
int m;
while(cin>>m)
{
Test t(m);
cout<<t.Getx()<<endl;
}
return 0;
}
输入
输入有多组测试数据,每行为一组测试数据,且只有一个正整数。
输出
根据程序代码输出相应的信息。
样例输入
100
样例输出
100
慕名不来
相关分类