Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Codechef/COOK133/Cars_and_Bikes.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#include <bits/stdc++.h>
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;
}