#include int main() { int sum=0,i=10; while(i) { sum+=i; i--; } printf("sum = %d\n",sum); return 0; }