#include #include "VendingMachine.h" using namespace std; int main() { VendingMachine vendor; int int1; int int2; cin >> int1; cin >> int2; vendor.Purchase(int1); vendor.Restock(int2); vendor.Report(); /* Type your code here */ }