// Dollers to pounds
// Date 02:28 11/10/2016
// By Ben a.k.a DreamVB

#include <iostream>
#include <iomanip>

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

int main(int argc, char *argv[]){
	float rate = 1.2436;
	float doller = 0.0;
	float gbp = 0.0;

	cout << "Enter amount in dollers : ";
	cin >> doller;
	gbp = (doller / rate);

	cout << "Dollers in British points is : " << (char)156 <<
		std::fixed << std::setprecision(2) << gbp << endl;

	system("pause");
	return 0;
}