aboutsummaryrefslogtreecommitdiff
path: root/codechef/ChangeRowAndColumnBoth/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'codechef/ChangeRowAndColumnBoth/main.cpp')
-rw-r--r--codechef/ChangeRowAndColumnBoth/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/codechef/ChangeRowAndColumnBoth/main.cpp b/codechef/ChangeRowAndColumnBoth/main.cpp
new file mode 100644
index 0000000..6cff4f0
--- /dev/null
+++ b/codechef/ChangeRowAndColumnBoth/main.cpp
@@ -0,0 +1,19 @@
+#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 sx, sy, ex, ey;
+ cin >> sx >> sy >> ex >> ey;
+ if(sx != ex && sy != ey) {
+ cout << 1 << endl;
+ } else {
+ cout << 2 << endl;
+ }
+ }
+}