Is it rated?

ABC 405

Problem 11 of 50

Easy

What to do

Check if a contestant's rating is 'rated' in a given division. Division 1 is rated for ratings 1600–2999. Division 2 is rated for ratings 1200–2399. Return 'Yes' if the rating falls in the range for the given division, 'No' otherwise.

Key Concepts

if-statements comparison operators input/output

Examples

Input: rating = 2000, division = 1

Output: Yes

Input: rating = 1000, division = 1

Output: No

Tips for Beginners

  • Focus on understanding the logic, not memorizing syntax
  • Use print statements to debug your code
  • Don't worry about input parsing - the function handles that for you
  • If stuck, try writing out your solution on paper first

Python Editor

Loading Python...