#K11796. Strictly Increasing Sequence
Strictly Increasing Sequence
Strictly Increasing Sequence
You are given a list of integers. Your task is to determine whether the given sequence is strictly increasing. A sequence \(a_1, a_2, \dots, a_n\) is considered strictly increasing if and only if \(a_1 < a_2 < \cdots < a_n\).
Output "Yes" if the sequence meets the condition, otherwise output "No".
inputFormat
The input consists of a single line containing space-separated integers representing the sequence.
outputFormat
Output a single line containing either "Yes" if the sequence is strictly increasing, or "No" otherwise.
## sample1 2 3 4 5
Yes
</p>