#include<stdio.h> int main(){ int p; int i; i = 1; while (i <= 100){ p += i; i++; } printf("%d",p); return 0; }