write a program that will act as a single user's ATM machine.....the user will have the following menu options
1. deposit
2. withdrawal
3. view account balance
4. exit
constraints for validation
user can not deposit less tha zero dollars
user must withdraw in $10 increments
user can not withdraw more than $200 in single session (need to keep running total)
user is not allowed to withdraw enire balance (at least $25 should be left)
other requirments
program should contain welcome message and closing message when exiting
program should include comments at 1:3 comments to code ratio
withdraw , deposit, and view balance should be seperate modules