#29577: C++紀錄


e3524167 (Kenlogin)


#include <iostream>

#include <string> 

#include <sstream>

 

using namespace std;

int main()

{

int x;

while (cin >> x)

{

cout << x * (x - 1) + 2 << endl;

}

}