#include using namespace std; using lint = long long; using pint = pair; using plint = pair; struct fast_ios { fast_ios() { cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(20); }; } fast_ios_; #define FOR(i, begin, end) for (int i = (begin), i##_end_ = (end); i < i##_end_; i++) #define IFOR(i, begin, end) for (int i = (end)-1, i##_begin_ = (begin); i >= i##_begin_; i--) #define REP(i, n) FOR(i, 0, n) #define IREP(i, n) IFOR(i, 0, n) #define ALL(x) (x).begin(), (x).end() // template void ndarray(vector& vec, const V& val, int len) { vec.assign(len, val); } template void ndarray(vector& vec, const V& val, int len, Args... args) { vec.resize(len), for_each(begin(vec), end(vec), [&](T& v) { ndarray(v, val, args...); }); } template bool chmax(T& m, const T q) { return m < q ? (m = q, true) : false; } template bool chmin(T& m, const T q) { return m > q ? (m = q, true) : false; } template pair operator+(const pair& l, const pair& r) { return make_pair(l.first + r.first, l.second + r.second); } template pair operator-(const pair& l, const pair& r) { return make_pair(l.first - r.first, l.second - r.second); } template vector srtunq(vector vec) { return sort(vec.begin(), vec.end()), vec.erase(unique(vec.begin(), vec.end()), vec.end()), vec; } template istream& operator>>(istream& is, vector& vec) { return for_each(begin(vec), end(vec), [&](T& v) { is >> v; }), is; } // output template ostream& dmpseq(ostream&, const T&, const string&, const string&, const string&); #if __cplusplus >= 201703L template ostream& operator<<(ostream& os, const tuple& tpl) { return apply([&os](auto&&... args) { ((os << args << ','), ...); }, tpl), os; } #endif // template ostream& operator<<(ostream& os, const pair& p) { return os << '(' << p.first << ',' << p.second << ')'; } template ostream& operator<<(ostream& os, const vector& x) { return dmpseq, T>(os, x, "[", ",", "]"); } template ostream& operator<<(ostream& os, const deque& x) { return dmpseq, T>(os, x, "deq[", ",", "]"); } template ostream& operator<<(ostream& os, const set& x) { return dmpseq, T>(os, x, "{", ",", "}"); } template ostream& operator<<(ostream& os, const unordered_set& x) { return dmpseq, T>(os, x, "{", ",", "}"); } template ostream& operator<<(ostream& os, const multiset& x) { return dmpseq, T>(os, x, "{", ",", "}"); } template ostream& operator<<(ostream& os, const map& x) { return dmpseq, pair>(os, x, "{", ",", "}"); } template ostream& operator<<(ostream& os, const unordered_map& x) { return dmpseq, pair>(os, x, "{", ",", "}"); } template ostream& dmpseq(ostream& os, const T& seq, const string& pre, const string& sp, const string& suf) { return os << pre, for_each(begin(seq), end(seq), [&](V x) { os << x << sp; }), os << suf; } template void print(const vector& x) { dmpseq, T>(cout, x, "", " ", "\n"); } #ifdef HITONANODE_LOCAL #define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl #else #define dbg(x) {} #endif // Rational number + {infinity(1 / 0), -infiity(-1 / 0)} (有理数) struct Rational { using Int = long long int; // __int128 Int num, den; static Int my_gcd(Int a, Int b) { // return __gcd(a, b); if (a < 0) a = -a; if (b < 0) b = -b; while (a and b) { if (a > b) a %= b; else b %= a; } return a + b; } Rational(Int num = 0, Int den = 1) : num(num), den(den) { normalize(); } void normalize() { // reduction and making denominator nonnegative Int g = my_gcd(num, den); num /= g, den /= g; if (den < 0) num = -num, den = -den; } Rational operator+(const Rational &r) const { return Rational(num * r.den + den * r.num, den * r.den); } Rational operator-(const Rational &r) const { return Rational(num * r.den - den * r.num, den * r.den); } Rational operator*(const Rational &r) const { return Rational(num * r.num, den * r.den); } Rational operator/(const Rational &r) const { return Rational(num * r.den, den * r.num); } Rational &operator+=(const Rational &r) { return *this = *this + r; } Rational &operator-=(const Rational &r) { return *this = *this - r; } Rational &operator*=(const Rational &r) { return *this = *this * r; } Rational &operator/=(const Rational &r) { return *this = *this / r; } Rational operator-() const { return Rational(-num, den); } Rational abs() const { return Rational(num > 0 ? num : -num, den); } bool operator==(const Rational &r) const { return num == r.num and den == r.den; } bool operator!=(const Rational &r) const { return num != r.num or den != r.den; } bool operator<(const Rational &r) const { if (den == 0 and r.den == 0) return num < r.num; else if (den == 0) return num < 0; else if (r.den == 0) return r.num > 0; else return num * r.den < den * r.num; } bool operator<=(const Rational &r) const { return (*this == r) or (*this < r); } bool operator>(const Rational &r) const { return r < *this; } bool operator>=(const Rational &r) const { return (r == *this) or (r < *this); } explicit operator double() const { return (double)num / (double)den; } explicit operator long double() const { return (long double)num / (long double)den; } friend std::ostream &operator<<(std::ostream &os, const Rational &x) { os << x.num << '/' << x.den; return os; } }; int main() { int A, B; cin >> A >> B; int init = (A % 12 * 60) + B; dbg(init); Rational b(B, 60), a(init, 60 * 12); Rational dist = (a >= b ? a - b : a - b + 1); dbg(dist); Rational ret = dist / (Rational(1, 60) - Rational(1, 60 * 12)); cout << int(double(ret * 60)) << '\n'; }