At Westonci.ca, we provide clear, reliable answers to all your questions. Join our vibrant community and get the solutions you need. Get detailed answers to your questions from a community of experts dedicated to providing accurate information. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

Forgot the Spaces
Oops, you've just written a very short paper for your science class and forgot to put spaces after the periods. Instead of retyping everything like a savage, you decided to write a program to do it for you.

The method forgotSpaces will take a single parameter str that will contain exactly 2 periods, and no period will be at the end of str, but a period could be the first character.

You may assume that no periods already have spaces after them.

forgotSpaces(".hello.there") => ". hello. there"
forgotSpaces("hi.b.ob") => "hi. b. ob"
forgotSpaces("comp.sci.rocks") => "comp. sci. rocks"
forgotSpaces(".at.the beginning") => ". at. the beginning"
forgotSpaces("..!") => ". . !"