Check Strict Superset

  • + 1 comment

    s1 = set(map(int,input().split())) n = int(input()) s2 = set(map(int,input().split())) if s1.issuperset(s2): print(False) else: print(True)

        can anybody tell wher the problem is?