Vyxal Ṫ, 3(削除) 3 (削除ここまで) 2 bytes
Ṅð+Ṅð
Explanation:
# Implicit input
Ṅ # Insert ' ' between each character
ð+ð # Append finalPush ' '
# Implicit'Ṫ' outputflag - sum entire stack and print
If the final space wasn't necessary:
Vyxal S, 0 bytes
Explanation:
# Implicit input
# 'S' flag - Print top of stack joined by spaces
Vyxal, 3 bytes
Ṅð+
Explanation:
# Implicit input
Ṅ # Insert ' ' between each character
ð+ # Append final ' '
# Implicit output
If the final space wasn't necessary:
Vyxal S, 0 bytes
Explanation:
# Implicit input
# 'S' flag - Print top of stack joined by spaces
Vyxal Ṫ, (削除) 3 (削除ここまで) 2 bytes
Ṅð
Explanation:
# Implicit input
Ṅ # Insert ' ' between each character
ð # Push ' '
# 'Ṫ' flag - sum entire stack and print
If the final space wasn't necessary:
Vyxal S, 0 bytes
Explanation:
# Implicit input
# 'S' flag - Print top of stack joined by spaces
Vyxal, 3 bytes
Ṅð+
Explanation:
# Implicit input
Ṅ # Insert ' ' between each character
ð+ # Append final ' '
# Implicit output
If the final space wasn't necessary:
Vyxal S, 0 bytes
Explanation:
# Implicit input
# 'S' flag - Print top of stack joined by spaces