Skip to content

Instantly share code, notes, and snippets.

@varundey
Created July 16, 2016 09:27
Show Gist options
  • Save varundey/9c394830842e5df56f79889f4121f5ea to your computer and use it in GitHub Desktop.
Save varundey/9c394830842e5df56f79889f4121f5ea to your computer and use it in GitHub Desktop.
n=input()
arr=[]
while n!=0:
n-=1
arr.append(input())
m=input()
while m!=0:
m-=1
arr.append(input())
for i in sorted(arr):
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment