PROBLEM LINK:
Practice
Contest: Division 1
Contest: Division 2
Contest: Division 3
Contest: Division 4
Author: raysh07
Tester: sky_nik
Editorialist: iceknight1093
DIFFICULTY:
TBD
PREREQUISITES:
None
PROBLEM:
RCB scored X runs, while CSK scored Y runs.
RCB will qualify if they win by at least 18 runs, otherwise CSK will qualify. Who qualifies?
EXPLANATION:
RCB qualify if they win by at least 18 runs, i.e, if X-Y\geq 18.
This can easily be checked using an if
condition.
TIME COMPLEXITY:
\mathcal{O}(1) per testcase.
CODE:
Editorialist's code (Python)
x, y = map(int, input().split())
print('RCB' if x-y >= 18 else 'CSK')