View Code of Problem 31

#include<cstdio>

int main(){
	int k,ans;
	//freopen("31.txt","r",stdin);
	while(scanf("%d",&k)!=EOF){
		ans=23+105*(k-1);
		printf("%d\n",ans);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 31