View Code of Problem 31

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

Double click to view unformatted code.


Back to problem 31