//remain.cpp
#include <iostream.h>
#include <conio.h>
int main()
getline ()
{
int beef = 2;
int ham = 3;
int turkey = 4;
int american = 5;
int swiss = 6;
int lettuce = 7;
int tomatoe = 8;
int pickle = 2;
int mayo = 1;
int meat;
int cheese;
int fixings;
int total;
cout << "What type of meat do you want (choose one)?\n";
cout << "beef\n";
cout << "ham\n";
cout << "turkey\n";
getline(cin, meat);
cout << "What type of cheese do you want (choose one)?\n";
cout << "american\n";
cout << "swiss\n";
getline(cin, cheese);
cout << "What fixings do you want (choose all if wanted)?\n";
cout << "lettuce\n";
cout << "tomatoe\n";
cout << "pickle\n";
cout << "mayo\n";
getline(cin, fixings);
meat = turkey + ham + beef;
cheese = american + swiss;
fixings = lettuce + tomatoe + pickle + mayo;
total = meat + cheese + fixings;
cout << "Your total cost is " << total;
getch();
return 0;
}