Problem: Pig Latin takes the first consonant (or consonant cluster) of an English word, moves it to the end of the word and suffixes an ay, or if a word begins with a vowel you just add way to the end. For example, pig becomes igpay, banana becomes ananabay, and aadvark becomes aadvarkway. Write a function that uses strings called PigLatinify that takes in a c++ string and returns the Pig Latin version.