#include <iostream>using namespace std;
int main() { int n ;//宣告變數n cin >> n ;//存入n cout << ( n/12 )*50 + (n%12)*5; return 0;}