• + 0 comments
    x, k = map(int, input().split())
    p = input()
    if eval(p)==k:
        print("True")
    else:
        print("False")