#34811: AC 解答


yp11151209@yphs.tp.edu.tw (802-41)


#include <iostream>
using namespace std;

int main ()
{
    int h;
    cin >> h;
    cout << (h+24 - 15) % 24 << endl; 
    return 0;
}