14236 - Confirm Your Meal   

Description

Create a program that takes the quantity of steaks, pasta, and salads ordered and outputs the order in the format.

Input

Three lines of input, each containing the quantity of steaks, pasta, and salads ordered.

Line 1: quantity of Steak
Line 2: quantity of Pasta
Line 3: quantity of Salad

Output

A single line indicating the order, formatted as "YOUR MEAL: {items}", where {items} is a list of the ordered items concatenated by "!" and each is repeated the number of times based on the quantity ordered.

Sample Input  Download

Sample Output  Download

Tags




Discuss