str contains a single pair of angle brackets, return a new string
// made of only the angle brackets and whatever those angle brackets
// contain. You can use substr in this problem. You cannot use find.
//
// Pseudocode Example:
// findAngles("abc 789") => " "
// findAngles(" 7") => " "
// findAngles("4agh ") => " "