20 lines
280 B
C++
20 lines
280 B
C++
|
#include <iostream>
|
||
|
|
||
|
#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 */
|
||
|
}
|