#include int main( void ) { std::cout << "The value of 9 / 5 is " << 9 / 5 << '\n'; std::cout << "The value of 9.0 / 5.0 is " << 9.0 / 5.0 << '\n'; return 0; }