fn main() { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); let ans = s.trim().parse::().unwrap() + 1; println!("{}", ans); }