Advertisement
Guest User

Untitled

a guest
Mar 28th, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. # input data
  4. N1, N2 = list(map(int, input().strip().split()))
  5. ID1 = list(map(int, input().strip().split()))
  6. ID2 = list(map(int, input().strip().split()))
  7.  
  8.  
  9. # insert your code here
  10.  
  11.  
  12. print(42)  # print the result
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement