View Code of Problem 31

#include<stdio.h>

int main()
{
    long long k,i;
    scanf("%lld",&k);
    i=3*5*7*(k-1)+23;
    printf("%lld",i)
    return 0;
}
/*
Main.c: In function 'main':
Main.c:10:5: error: expected ';' before 'return'
     return 0;
     ^
*/

Double click to view unformatted code.


Back to problem 31