Q16Single correct3 Marks11 Dec 2022
Consider the following snippet of code.
```
name = input()
nick = "" # there is no space between the quotes
space = " " # there is only one space between the quotes
first_char = True
for char in name:
if first_char:
nick = nick + char
first_char = False
if char == space:
first_char = True
print(nick)
```
What is the output for the following input?
Albus percival brian wulfric dumbledore