Please Login in order to post a comment
Here's my code
x, k = map(int, input().split()) print(eval(input()) == k)
x, k = map(int, input().split()) P = input() print(eval(P) == k)
x,k = map(int,input().split()) y = input() z = eval(y) print('True' if int(z) == int(k) else 'False')
x, k = list(map(int, input().split())) p = eval(input()) print(p == k)
x,k = map(int, input().split()) print(eval(input())==k)
Seems like cookies are disabled on this browser, please enable them to open this website
Here's my code