fn main() { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); let n: u8 = s.trim().parse().unwrap(); println!( "{}", match n { 2 | 3 | 5 | 7 | 11 | 13 | 17 | 19 | 23 | 29 | 31 | 37 | 41 | 43 | 47 | 53 | 59 | 61 => "Sosu!".to_owned(), 4 | 9 | 16 | 25 | 36 | 49 => "Heihosu!".to_owned(), 8 | 27 => "Ripposu!".to_owned(), 6 | 28 => "Kanzensu!".to_owned(), _ => n.to_string(), } ) }