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