Squared

i tested this program and it also work then why here its saying compilation wrong…

#include <stdio.h>
#include<math.h>

int main()
{
    int side,area;
    scanf("%d",&side);
    area=side*side;
    printf("%d",area);

    return 0;
}