------
## 最终结论
```python
def words_ae(input_string):
    words = input_string.split()
    result = [word[1:] for word in words if word.startswith('a') or word.startswith('e')]
    return result
```