Define enum Direction { Up, Down, Left, Right }.
Represent input as a strongly-typed enum:
```csharp
enum Direction { Up, Down, Left, Right }
```
Then declare `Direction d = Direction.Up;` and print it (expected: Up).Sign in to save your code and track progress across devices.