#include <iostream>
#include <iomanip>

using namespace std;

int main(){
	
	float amount,turkish;
	
	cout << fixed << showpoint << setprecision(2) ;
	cout <<"Enter the amount of money in:RM "<<endl;
	cin >> amount;
	
	turkish= amount * 0.5997;
	
	cout << " The amount of money is : " << turkish<< " Lira"<<endl;
	
return 0;

}
