Hi there
u seem to be trying to execute the cpp file

.
You can only run an executable.
The compiler compiles the code and puts the output in a.out file.
for ex.
do
g++ values.cpp
it will make a file named a.out
execute it using
./a.out
This will work and try google for some elementry tutorials on how to
compile and execute a c/c++ program in linux.
Majjj