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