#K56227. Will the Attendee Be Ready?
Will the Attendee Be Ready?
Will the Attendee Be Ready?
You are given three integers \(D\), \(T\), and \(B\), where:
- \(D\) is the duration of the conference in minutes (this value is provided for context and not used in the decision logic).
- \(T\) represents the time from now until the conference starts in minutes.
- \(B\) is the time required for the attendee to connect and get ready in minutes.
The attendee will be ready by the start of the conference if and only if \(B \le T\). Otherwise, they will not be ready.
Determine whether the attendee will be ready and output Yes
or No
accordingly.
inputFormat
The input consists of a single line containing three space-separated integers: (D), (T), and (B).
outputFormat
Output a single line containing "Yes" if the attendee will be ready to start the conference, otherwise output "No".## sample
50 30 20
Yes