[EASY] Ciel and A-B Problem - CodeChef
[EASY] Ciel and A-B Problem – CodeChef
Here is the problem: http://www.codechef.com/problems/CIELAB/ And here is my solution. I get 0.32s with this code.
numbers = map(int, raw_input().split()) check = numbers[0] - numbers[1] if(check % 10 == 9): print check - 1 else: print check + 2
View On WordPress

















