niromru

Стул №...

Dec 26th, 2020 (edited)
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. n = int(input())
  2. a = []
  3. b = []
  4. for i in range(n):
  5.     a.append(input())
  6.     b.append(input())
  7. for i in range(n):
  8.     print(*list(set(a[i]) ^ set(b[i])))
  9.  
Add Comment
Please, Sign In to add comment