#include #include "order2.H" int main ( ) { Order order; // print a greeting cout << "Welcome to UMBC Pizza take-out!" << endl << endl; // input the order information cin >> order; // output the order info and price cout << order; return 0; }