#include<iostream> using namespace std; int main() { unsigned int time ; while(cin >> time) { cout << (time+9)%24 << endl ; } return 0; }