Dystopian I


Submit solution

Points: 1
Time limit: 2.0s
Memory limit: 256M

Author:
Problem type
Allowed languages
C, C++, Java, Python

Dystopian Land of Fives Part 1: Dangerous Drones

In a dystopian land ruled by number fives, Brooke is one of the last human survivors. She is currently on the run from a lot of dangerous murderous drones and have come across a shelter built by a previous survivor. In the shelter, there's a special keypad to destroy the drones.

The keypad contains three non-negative integers and Brooke has to press the integers not equal to 5 to destroy the drones. If no 5 exists on the keypad, she has to "Run!".

However, she is currently exhausted from running for days and needs your help to pick the right integers.

Input

The input consists of one line containing three integers A, B, C\ (0 \leq A, B, C \leq 500).

Output

Print the numbers not equal to 5 in a single line in the same order as the input. If 5 does not exist, print "Run!".

It is guaranteed that there will be at least one non-negative integer not equal to 5 in the input.

Examples

Input 1
13 5 10
Output 1
13 10
Input 2
5 5 6
Output 2
6
Input 3
1 2 3
Output 3
Run!

Comments

There are no comments at the moment.