5 Respuestas
+ 3
s = str(input()).split(" ")
print(s[0], s[-1])
#input: this is a string
#output: this string
+ 4
# txt = input()
txt = "Hello world"
print(txt[0], txt[-1]) # H d
+ 3
txt = input()
+ 1
first and last letter actually , my bad
0
First and last 'work'?