View Code of Problem 31

#include <iostream>
#include<cmath>
using namespace std;
int main() {
	long long int n;
	while (cin>>n)
	{
		 cout << 23 + 105 * (n - 1) << endl;
	}
	
}

Double click to view unformatted code.


Back to problem 31