PROBLEM LINK:
Author: Amul Agarwal
Tester: Ishaan Shah, Sanyam Shah, Sambasai Andem and Tejas Chaudhari
Editorialist: Rutvij Menavlikar
DIFFICULTY:
SIMPLE
EXPLANATION:
Output ‘0’, which refers to the exit code in case of successful execution.
ALTERNATE EXPLANATION:
Nil#giri refers to giving output ‘0’
SOLUTIONS:
Tester's Solution
#include <bits/stdc++.h>
using namespace std;
int main() {
cout<<0<<endl;
}
Editorialist's Solution
print(0)