#include #include using namespace std; int main() { double money; float interest; double after_a_year; cout << "How much money do you have? "; cin >> money; cout << "What is the interest rate? "; cin >> interest; after_a_year = money*(1.0 + interest/100.0); cout << "After a year you have " << after_a_year << endl; return 0; }