View Code of Problem 31

#include<stdio.h>
int main()
{
	long long int k;
	while(scanf("%lld",&k)!=EOF)
	{
		printf("%lld\n",23+(k-1)*105);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 31