Advertisement
Bad_Programist

Untitled

Dec 15th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. with open ('input.txt') as f:
  2.     a = []
  3.     for line in f:
  4.         a.append(set(line.split()))
  5. with open ('output.txt', 'w') as F:
  6.     print(len(a[0] - a[1]), file = F)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement