Answer to Question #318465 in C++ for ness

Question #318465

6. Three Lines Apart

by CodeChum Admin


Do you like reading books? If you do, then you must have encountered texts that have quite a wide space with dots in between them, just like pausing or thinking before proceeding the narration. Let's try doing that here in Python, shall we?


Input


Two lines containing a string on each.


some string

another string


Output


The first line contains the first inputted string.

The next three lines contains a dot symbol on each.

The last line contains the second inputted string.


some string

.

.

.

another string



1
Expert's answer
2022-03-26T05:45:18-0400
line1 = input()
line2 = input()


print(line1)
for i in range(3):
    print('.')
print(line2)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog