aboutsummaryrefslogtreecommitdiff
path: root/contests/21-04-2022(Div.4)/A.cpp
blob: 35c326eca096b5c6badea9726be0b1a55579937a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include<bits/stdc++.h>

using namespace std;

int main(){
  int tt, x;
  cin >> tt;
  while(tt--){
    cin >> x;
    if(x >= 1900){
      cout << "Division 1" << '\n';
    }
    else if(x >= 1600 && x <= 1899){
      cout << "Division 2" << '\n';
    }
    else if(x >= 1400 && x <= 1599){
      cout << "Division 3" << '\n';
    }
    else{
      cout << "Division 4" << '\n';
    }
  }
}