What does this program print?

from C# fundamentals
C# 14 / .NET 10 beginner 2 min

What does this program print?

csharp
using System;

int completed = 5;
int total = 2;
double ratio = completed / total;

Console.WriteLine(ratio);
Open in playground
Report an error