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; +}