from enum import Enum

class Kierunek(Enum):
   GORA = 0
   PRAWO = 1
   DOL = 2
   LEWO = 3