Limits 1s, 512 MB

As DIU ACM is organizing the “Take-off Programming Contest 2023”, they need to select the Judging Director of the event. So, they want to select the Judging Director by voting out the worthy candidate. However, not everyone in the club can vote since there is an age limit.

But they don’t want to go with the traditional route. So, they want to build a program that will show the members of DIU ACM if they can vote or not, and with that, they will get a consolation note so that they won’t be upset.

What they want to show by the program:

  1. If age<21age < 21 years, then the output will be “Sorry, you are too young to vote.”

  2. If 21age<2321 \le age < 23 years, then the output will be “Wait a little more to vote.”

  3. If age23age \ge 23 years, then the output will be “Yes, you can vote.”

Can you help DIU CPC get out of this mess?

Input

The input file contains an integer value nn (15n45)(15 \le n \le 45) — indicating the age of the student.

Output

You have to output a single line contains the expected output for the specific age range.

Samples

InputOutput
21
Wait a little more to vote.
InputOutput
29
Yes, you can vote.
InputOutput
20
Sorry, you are too young to vote.

Be careful about the newline(‘\n’) at the end.

Submit

Login to submit.

Statistics

92% Solution Ratio
tasnim07Earliest, 11M ago
Fardin.5829Fastest, 0.0s
Jannatul.3063Lightest, 4.9 MB
mdshadeshShortest, 174B
Toph uses cookies. By continuing you agree to our Cookie Policy.