print("Enter the array:
")
userInput = input().splitlines()
print(userInput)
#two input in one line python
X, N = [int(x) for x in input().split()]
import sys
userInput = sys.stdin.readlines()
lines = []
while True:
line = input()
if line:
lines.append(line)
else:
break
text = '
'.join(lines)
print("Enter/Paste your content. Ctrl-D or Ctrl-Z ( windows ) to save it.")
contents = []
while True:
try:
line = input()
except EOFError:
break
contents.append(line)
x, y = input().split()