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