Check Strict Superset

  • + 0 comments

    Ahha-ha! funny language

    A = set(map(int, input().split()))
    N = int(input())
    res = True
    while N > 0 and res:
        N -=1
        res = A.issuperset(set(map(int, input().split())))
    print (res)
    

    `