View Code of Problem 31

#include<cstdio>

int main(){
	long int k,ans;
	while(scanf("%ld",&k)!=EOF){
		ans=23+105*(k-1);
		printf("%ld\n",ans);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 31