Define a class named Money that stores a monetary amount. The class should have two private integer variables, one to store the number of dollars and another to store the number of cents. Add accessor and mutator functions to read and set both member variables. Add a function that returns the dollar amount as a double. Add another function that returns the monetary amount in Euro currency (get current rates of conversion from the internet). Write a program that tests all of your functions. Input the amount. Then print the monetary amount first in dollars and cents and then in Euros.