View Code of Problem 31

#include<stdio.h>
int main()
{

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

}

Double click to view unformatted code.


Back to problem 31