#include <iostream>
int main( )
{
    int x = 5;

    while ( x > 0 )
    {
        std::cout << " x== " << x;
        x = x - 1;
    }
    retun 0;
}
// x==5 x==4 x==3 x==2 x==1