Why is C program taking more memory than usual in codechef?

Just used two integer variables in my program and codechef says Mem 2.2M

ID Date/Time User Result Time Mem Lang Solution

4112817 41 min ago pravinkumarr 0.09 2.2M C View

My program is

#include<stdio.h>

int main()

{

int T,N;
scanf("%d",&T);
while(T--)
{
    scanf("%d",&N);
    N=N&0xfffffffe;
    printf("%d\n",N);
}
return 0;

}

Not only in this program, but also in 2 more programs where I used just 2 integers and it says 2.2M.

1.6M is for an older version of C(4.3.2)…now the version being used is 4.8.1…hence the difference!!!