hi,please help me with this program ,iwant it to print values of x not x
#include <iostream>
using namespace std;
int main()
{
int x = 5;
while(x < 7)
{
std::cout<<" value of x"<<'\n';
x=x+1;
}
while(x > 7)
{
std::cout<<" value of x"<<'\n';
x=x-2;
}
return 0;
}