// #[rustfmt::skip] // pub mod lib {pub use ac_library::*;pub use itertools::{join, Combinations, Itertools, MultiProduct, Permutations};pub use proconio::{input,marker::{Chars, Usize1}};pub use std::{cmp::*, collections::*, mem::swap};pub use regex::Regex;pub use superslice::Ext;pub use num_traits::{One, ToPrimitive, FromPrimitive, PrimInt};#[macro_export]macro_rules! degg {($($val:expr),+ $(,)?) => {println!("[{}:{}] {}",file!(),line!(),{let mut parts = Vec::new();$(parts.push(format!("{} = {:?}", stringify!($val), &$val));)+parts.join(", ")})}}} // use lib::*; use std::collections::{HashMap, HashSet}; use proconio::input; fn main() { input! { l: usize, r: usize, } let mut ans = HashSet::new(); for num in l..=r { if num <= 295 { ans.insert('c'); } else if num <= 416 { ans.insert('r'); } else { ans.insert('p'); } } println!("{}", ans.len() - 1); }