Imports System, Microsoft.VisualBasic
Console.WriteLine("Please enter if you would like a combo(C) or regular (R) meal:")
mealType = Console.ReadLine()
COnsole.WriteLine("Please enter a drink size, (S) for small, (M) for medium, and (L) for large")
drinkSize = Console.ReadLine()
If mealType = "C" Or mealType = "c" Then
ElseIf drinkSIze = "L" THen
ElseIf mealType = "R" Then
COnsole.WriteLine("Your total is " & formatCurrency(finalCost))