https://www.codechef.com/CCSTART2/problems/SUMEVOD

Please check …what’s wrong with my code…

#include <stdio.h>

int main(void) {
int N,odd,even;
scanf("%d",&N);

even=N*(N+1);
odd=N*N;
 
 printf("%d\t%d",odd,even);

// your code goes here
return 0;

}

Where is your code?