Floating Number Validation

Given a string, you should validate whether the string represents a legal float number. The legal float number should in this pattern: ^([+-])?(?\d*)?((.)(?\d*))?(([eE])(?[+-]?\d+))?$ Obviously if both fractional_digits and integral_digits part are empty, this string is also illegal.

Input

There are multiple test cases, each with a string in a line(no extra blanks in this string). The test cases end with a single '#' in a line.

Output

If the string represents a legal float number, output 'Yes' in a line. Otherwise output 'No'.

Sample Input

1.1e11
1.1e1.1
#
Sample Output

Yes
No

https://www.baidu.com/link?url=1xgp_Xd-39TU-p0v1druDBq1-ECUKGnZwzfRUxPYrMOT0OG2vpAKskG6zMDviXoS1JEHvGxTTMbyCS_XGivfnq&wd=&eqid=adc50f310000d3640000000559cf9daf