#include 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'; } } }