DWITE Online Computer Programming Contest
November 2007
Problem 4
All Is Balanced

Parenthesis are important characters in programming -- they define order of operations and organize information. That is, as long as they are properly balanced. Parenthesis are balanced when opening and closing brackets are match with one another, and are themselves nested within balanced parenthesis.

This is perhaps best illustrated in examples.

The input file DATA4.txt will contain 5 line, each no more than 255 characters long. Valid characters are any of the three parenthesis types: (), [], {}, and any alphanumeric characters: a-z0-9.

The output file OUT4.txt will contain 5 lines, each stating either "balanced" or "not balanced", for the supplied expressions. Use the exact string output, all lower case, without quotes.

All of the characters but the parenthesis could effectively be ignored. Keep in mind the different types of parenthesis -- an opening bracket needs to be matched with a closing bracket of the same type.

Sample Input:
abc
([{a}b]c)
)(
([)]
{abc]
        
Sample Output:
balanced
balanced
not balanced
not balanced
not balanced