forked from shyamal2411/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVaccine_Dates_.cpp
More file actions
37 lines (32 loc) · 770 Bytes
/
Vaccine_Dates_.cpp
File metadata and controls
37 lines (32 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define nl "\n"
const int M=1e9+7;
typedef vector<int> vi;
#define f(i,a,n) for(int i=a;i<n;i++)
#define rf(i,a,n) for(int i=n-1;i>=a;i--)
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cin.tie(0);cout.tie(0);
#define read(arr,n) for(int i=0;i<n;i++)cin>>arr[i];
#define pr(arr,n) for(int i=0;i<n;i++)cout<<arr[i];
#define in cin>>
#define out cout<<
#define first fr
#define second sc
void solve(){
int n,k,i,p,q,count=0,j,flag,ans=0;
int d, l, r;
cin>>d>>l>>r;
if(d>=l && d<=r)
cout<<"Take second dose now"<<endl;
else if(d>r)
cout<<"Too Late"<<endl;
else if(d<l)
cout<<"Too Early"<<endl;
}
int32_t main(){
FIO int t; t=1;
in t;
while(t--) solve();
return 0;
}