9 lines
75 B
Python
9 lines
75 B
Python
s = input("s: ")
|
|
|
|
t = s.capitalize()
|
|
|
|
print(f"s: {s}")
|
|
print(f"t: {t}")
|
|
|
|
|