//C++ Primer Plus -- Chapter 2--1
#include <iostream>
const int inch_to_feet=12;
using namespace std;
int main ()
{
	int height;
	cout<<"Pleace input your height:______\b\b\b\b\b\b";
	cin>>height;
	int feet=height/inch_to_feet;
	int inch=height%inch_to_feet;
	cout<<"Now,your height is "<<feet<<" feet, "<<inch<<" inch.\n";

	system("pause");
	return 0;
}