Pusheen recently got her report card back! Pusheen took two classes last semester, CS452 and PHIL145. She was rather burnt out from all the critical thinking and real-time programming that she had to do, so she needs your help to figure out which one she did better in.
Constraints
In tests worth 14 marks, .
Input Specification
The first line of input contains a single integer, , Pusheen's mark in CS452.
The second line of input contains a single integer, , Pusheen's mark in PHIL145.
Output Specification
Output, on a single line, which course Pusheen did better in. If she did equally well in both courses, do not output anything.
Sample Input
100
0
Sample Output
CS452
Sample Explanation
Pusheen was really good at real-time programming but clearly had problems with critical thinking, so she got a 100 in CS452 and a 0 in PHIL145, and thus did better in CS452.
Comments
I almost got a heart attack from how many test cases there were
How does a cat get a report card?
Why does this problem have so many test cases?
When I submit my code, it tells me to check my whitespace, but when I check it in my IDE it looks fine. I am not sure what I should do. https://dmoj.ca/src/4326573
Whitespace counts as something.
Why does the code I submitted show WA when it works on a C++ compiler like Replit?
Outputting a blank line (i.e.
cout << endl
in C++) != outputting nothingDid you test every possible input in Replit? Or did you only test a handful before incorrectly coming to the conclusion that your code is correct?