// Fahrenhet to celcius calculator
// Version 1.0
// Date 20:25 10/10/2016
// By Ben a.k.a DreamVB

#include <iostream>

using namespace std;
using std::cout;
using std::endl;
using std::cin;

int main(int argc, char *argv[]){
	float f = 0;
	float c = 0;
	
	cout << "Enter fahrenheit tempture : ";
	//Get fahrenheit tempture
	cin >> f;
	//Calc celsius
	c = (f-32) * 5/9;
	//Display result
	cout << "degrees Celsius : " << c << endl;

	system("pause");
	return 0;
}