#33046: c++ 不用if解法


judgeking001 (adking)


int main()
{
    int n;
    cin >> n;
    cout << n - (n / 51) << endl;
}