#include using namespace std; using ll = long long; constexpr char newl = '\n'; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int a, b; cin >> a >> b; int hoge = a * 60 - b * 11; if (hoge < 0) hoge += 720; hoge %= 720; cout << hoge * 60 / 11 << newl; return 0; }