View Code of Problem 31

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

Double click to view unformatted code.


Back to problem 31