#include <iostream>
using namespace std;
int main() {
int h;
cin >> h;
int us_time = (h - 15 + 24) % 24;
cout << us_time << endl;
return 0;
}