#include <iostream>
#include <iomanip>
using namespace std;

int main() {
	double amount=100000, rateMonthly=.1;
	cout <<setw(25) << left<< "Loan amount:" <<  "$ "<< setw(10)<<right << amount << endl;
    cout <<setw(25)<< left << "Monthly Interest Rate:"<<"  "<<setw(10)<<right<< rateMonthly << " %" << endl; 
	return 0;
}