#include using namespace std; typedef long long ll; typedef pair pii; #define pb push_back #define mp make_pair #define rep(i,n) for(int i=0;i<(n);++i) int main(){ cin.tie(0); ios::sync_with_stdio(false); int a,b;cin >> a >> b; vector c(32,true); for(int i=a;i<=b;++i) c.at(i)=false; int ans=0; for(int i=23;i<=25;++i) if(c.at(i)) ans++; cout << ans << endl; }