#include <iostream.h> main(){ const int moon = 238857; cout << "The moon's distance from the Earth is " << moon; cout << " miles." << endl; int moon_kilo; moon_kilo = moon * 1.609; cout << "In kilometers, this is " << moon_kilo; cout << " km." << endl; }