Hi I am not getting the output for 4th problem statement under input/output section in codekata, can anyone please help with this, below is the code
# Get input in the specified format
input_line1 = input().strip()
input_line2 = input().strip()
input_line3 = input().strip()
# Print the input in the same format
print(input_line1)
print(input_line2)
print(input_line3)
,