#55506: 此題解答(C++)


yp11550392@yphs.tp.edu.tw (ZEROJUDGE)


#include <iostream>

using namespace std;

int main(){
  int time;
  cin >> time;

  cout << (time - 15 + 24)%24;

return 0;

}