aboutsummaryrefslogtreecommitdiff
path: root/codechef/vaccineDates/vaccineDates.cpp
blob: 5c49a2892ff42df8223728c90159d296422a8de5 (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 () {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	int tt;
	cin >> tt;
	while(tt--){
    int d, l, r;
    cin >> d >> l >> r;
    if(d >= l && d <= r) {
      cout << "Take second dose now" << '\n';
    }
    else if(d > r) {
      cout << "Too Late" << '\n';
    }
    else if(d < l) {
      cout << "Too Early" << '\n';
    }
	}
}