#include <iostream>
using namespace std;
enum Season: char {
Summer = 'A', Fall, Winter, Spring
};
enum Align: int {
Left, Right, Center
};
char fall = Fall;
//fall is 'B', type char
int center = Center;
//center is 2, type int
cout << "fall is " << fall << endl;
cout << "center is " << center;