#40244: c++ ac


yp11251034@yphs.tp.edu.tw (803-38劉宇皓)

學校 : 臺北市私立延平高級中學
編號 : 262305
來源 : [203.72.178.1]
最後登入時間 :
2024-12-19 16:31:02

#include <iostream>
using namespace std;

int main ()
{
    int n;
    cin >> n;
    cout << (n/12) * 50 + (n % 12) * 5 << endl;
    return 0;
}