Implement static float Lerp(float a, float b, float t).
Smoothly move between two values:
```csharp
static float Lerp(float a, float b, float t) => a + (b - a) * t;
```
Implement Lerp and print Lerp(0f, 100f, 0.25f) — expected 25.
Sign in to save your code and track progress across devices.