Conditional Statement

Problem Statement
Given a positive integer A do the following:
- If the number is less than 5, print the number
- If the number is more than 5, print 'more than 5'
- If the number is 5, print 'bingo'
Constraints
- A is an integer between 1 and 100
Input
Input is in the following format:
A
Output
Print bingo if the number is 5.
Print more than 5 if the number number is more than 5.
Print the number itself if it is less than 5, for example if the bumber is 2 print two.
Samples
Sample 1
| Input | Output |
|---|---|
| 1 | one |
Sample 2
| Input | Output |
|---|---|
| 3 | three |
Sample 3
| Input | Output |
|---|---|
| 99 | more than 5 |
Comments