extern crate rand;
use rand::random;
fn read_number() –> i32 {
let mut s = String::from("");
std::io::stdin().read_line(&mut s).unwrap();
s.trim().parse().unwrap()
}
fn main() {
let n = read_number();
let res: i32 = (0..n).map(|_| random()).filter(|x| x % 5 == 0).product();
println!("{}", res);
}