// Feet to inches, inchs to feet
// By DreamVB 23:56 14/10/2016

#include <iostream>

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

int main(int argc, char *argv[]){
	float feet = 0;
	float inchs = 0;
	float i_ret = 0;
	float f_ret = 0;

	cout << "Enter a value for feet : ";
	cin >> feet;
	cout << "Enter a value for inches : ";
	cin >> inchs;
	cout << endl;

	i_ret = (feet * 12);
	cout << "Foot " << feet << " in inches is : " << i_ret << " inches" << endl;

	f_ret = (inchs / 12);
	cout << "Inchs " << inchs << " in feet is : " << f_ret << " feet" << endl;

	system("pause");
	return 0;
}