#include using namespace std; class Solution{ public: int totalMoney(int n){ int monday = 0; int rlt = 0; for(int i = 1 ; i<=n ;i++){ if(i%7==1){ monday = monday + 1; rlt += monday; cout<