// This program calulate the user's pay.
#include <iostream>
using namespace std;

int main ()
{
	double hours, rate ,pay;
	 //Get the number of hours worked.
	 cout << "How many hours did you work?" << endl;
	 cin >> hours;
	 
	 //Get the hourly pay rate.
	 cout << "How much do you get paid per hour?\n ";
	 cin >> rate;
	 
	 //Calculate the pay 
	 pay = hours * rate ;
	 
	 //Display the pay.
	 cout << " You have earned $ "<< pay << endl;
	 return 0; 
}
