您的位置:首页 > 其它

743C. Vladik and fractions codeforces

2016-12-15 21:19 393 查看
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
if(n==1)
cout<<-1<<endl;
else
cout<<n<<' '<<n+1<<' '<<n*(n+1)<<endl;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: