#include "stdio.h" int main() { int N ; int buff = 0; while(N != 0){ buff += N; N--; } return 0; }