#include using namespace std; int main() { int a, b, c; float Faren, Celc; a = 5; b = 9; c = 32; Faren = 14.6; Celc = float(a)/float(b)*(Faren - float(c)); cout << Faren << " Degrees F is the same as " << Celc << " Degrees C" << endl; return 0; }