from enum import Enum


class Constants(Enum):
    WIDTH = 1024
    HEIGHT = 256


print(Constants.WIDTH.value)
print(Constants.HEIGHT.value)
