View Code of Problem 31

#include<stdio.h>

int main()
{
    int k,i;
    scanf("%d",&k);
    i=105*(k-1)+23;
    printf("%d",i);
    return 0;
}

Double click to view unformatted code.


Back to problem 31