#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <stack>
#include <algorithm>
using namespace std;
enum brace_type {ORIENTED_OPEN = '<', ORIENTED_CLOSE = '>', REGULAR_OPEN = '{', REGULAR_CLOSE = '}'}; // Типы скобок
enum mnogestvo_type {ORIENTED, REGULAR}; // Тип множества - ориентированное или нет
enum element_type {SINGLE, MNOGESTVO}; // Тип эл-та - множество или объект
class Mno