View Code of Problem 77

s=input()
for i in range(len(s)-1):
    print(s[i],end=' ')
print(s[-1])

Double click to view unformatted code.


Back to problem 77