Spot the bug in the order total

from Data types
C# 14 / .NET 10 beginner 4 min 1 issue to find

Find the overflow bug in this order-total calculation.

csharp
static long TotalCents(int quantity, int unitCents)
{
    return quantity * unitCents;
}
Open in playground
Report an error