#include int main(void) { int sum = 0; for (int i = 1; i <= 100; i++) { sum += i * i; } printf("The sum of the squares of the first 100 natural numbers is %d\n", sum); return 0; }