#include int main() { int x = 0,i = 0; for(i = 1; i <= 100; i++) { x += i; } printf("%d\n", x); return 0; }