#17 - Remove Extra Spaces

Write a program to remove spaces from a given string.

Example 1

Input

" Programming is fun !! "

Output

"Programming is fun !!"

Last updated