7 lines
107 B
Python
7 lines
107 B
Python
before = input("Before: ")
|
|
print("After: ", end="")
|
|
for c in before:
|
|
print(c.upper(), end="")
|
|
|
|
print()
|