From 2d23bc8be89c361376d29f701be2bd749764e791 Mon Sep 17 00:00:00 2001 From: Shrimad-Bhagwat Date: Wed, 22 Sep 2021 15:09:14 +0530 Subject: [PATCH] Codechef Sep. Cook-Off 21 --- Codechef/COOK133/Cars_and_Bikes.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Codechef/COOK133/Cars_and_Bikes.cpp diff --git a/Codechef/COOK133/Cars_and_Bikes.cpp b/Codechef/COOK133/Cars_and_Bikes.cpp new file mode 100644 index 0000000..c07e88f --- /dev/null +++ b/Codechef/COOK133/Cars_and_Bikes.cpp @@ -0,0 +1,20 @@ +#include +using namespace std; +// Contributed by Shrimad Bhagwat + +typedef long long ll; +int main() { + int t; + cin >> t; + while(t--){ + int n; + cin >> n; + if(n%4==0){ + cout << "NO" << endl; + } + else{ + cout << "YES" << endl; + } + } + return 0; +}