Training Site
Sideways banner

More Tea Please

Input: Standard Input (stdin)
Output: Standard Output (stdout)
Memory limit: 100 megabytes
Time limit: 1.0 seconds

There are 6 kinds of tea to be delivered to the TLC tea shop: Ginger, Chamomile, Earl Gray, Peppermint, Lemon and Strawberry. The Magical Tea company delivers cartons of tea weekly to the TLC tea shop. (TLC stands for Tender Loving Care)

There are 24 boxes of 10 teabags within each carton.

Please help the store owner know how many teabags they have just had delivered of each type.

Input

There are 6 lines, each containing a single integer, representing the number of cartons of Ginger, Chamomile, Earl Gray, Peppermint, Lemon and Strawberry teas in order. Each number will be between 0 and 100.

Output

There should be six lines, each containing the name of a tea (in the above order) followed by the number of tea bags of that flavour delivered to the TLC tea shop.

  • Sample Input 1

    1
    0
    3
    4
    2
    6
    

    Sample Output 1

    Ginger 240
    Chamomile 0
    Earl Gray 720
    Peppermint 960
    Lemon 480
    Strawberry 1440