#C6747. Maximum Number of Guests

    ID: 50541 Type: Default 1000ms 256MiB

Maximum Number of Guests

Maximum Number of Guests

You are given a budget and are required to determine the maximum number of guests that can attend an event. Each guest has a fixed cost that is computed as the sum of the meal cost and the gift cost. Specifically, each guest costs $15.50 for a meal and $10.25 for a gift, resulting in a total cost per guest of \(15.50 + 10.25 = 25.75\) dollars.

Your task is to compute the maximum number of guests that can be invited such that the total cost does not exceed the given budget. The result is obtained by performing floor division of the budget by \(25.75\).

inputFormat

The input consists of a single line containing a floating point number representing the total budget available.

outputFormat

Output an integer representing the maximum number of guests that can be invited without exceeding the budget.

## sample
0
0