aboutsummaryrefslogtreecommitdiff
path: root/codechef/vaccineDates.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'codechef/vaccineDates.cpp')
-rw-r--r--codechef/vaccineDates.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/codechef/vaccineDates.cpp b/codechef/vaccineDates.cpp
deleted file mode 100644
index 5c49a28..0000000
--- a/codechef/vaccineDates.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#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';
- }
- }
-}