#include "ATM.h"
#include "Coffee.h"
int main() {
srand(time(0));
if(rand()%2){
ATM::main();
} else{
Coffee::main();
}
return 0;