#include <iostream> 
#include <cmath>

using namespace std; 

int fee(double x, int y) 
{
    return 3*(x/y);
}

int main()
{
    cout << fee(8.2,3);
    return 0;
} 