is the earth flat

#include <stdio.h>

int main() {
    int isEarthFlat = 0; // 0 represents false (not flat), 1 represents true (flat)

    if (isEarthFlat) {
        printf("The Earth is flat.\n");
    } else {
        printf("The Earth is not flat; it is an oblate spheroid.\n");
    }

    return 0;
}