mmm no i'm not IT person i wanna just make a small comparison between two codes and i spend a lot of time to study this is code i know its very easy but i need it please
#include <stdio.h>
int main() {
int N;
for(;scanf("%d",&N) && N!=0;printf("%d => %d\n",N,N*N-N+1));
return 0;
}