square in c

#include <stdio.h>

int main() {
    int side, area;

    printf("Enter the side length of the square: ");
    scanf("%d", &side);

    area = side * side;

    printf("The area of the square with side length %d is: %d\n", side, area);

    return 0;
}