You are given a string from your friend. You want to know whether it is a math string, an English string, or other.
A math string is a string that only contains numbers ().
A English string is a string that only contains lowercase Latin characters.
Given a string of alphanumeric characters, determine if the string is a math string, a English string, or other.
Input Specification
The first line will contain the string . It is guaranteed will only contain lowercase alphanumerical characters.
Output Specification
- If the string is a math string, output
Math
. - If the string is an English string, output
English
. - Otherwise, output
Other
.
Subtasks
For 5/15 of the points,
Sample Input 1
abb
Sample Output 1
English
Sample Input 2
1j
Sample Output 2
Other
Comments