View Code of Problem 31

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

Double click to view unformatted code.


Back to problem 31