use template_cp::Scanner;
use std::io;
fn main() {
let mut scan = Scanner::new(io::stdin().lock());
let mut out = io::BufWriter::new(io::stdout().lock());
solve(&mut scan, &mut out);
}
fn solve<R: io::BufRead, W: io::Write>(scan: &mut Scanner<R>, out: &mut W) {
let n: usize = scan.tok();
writeln!(out, "{}", n).ok();
let _v: Vec<i32> = (0..n).map(|_| scan.tok()).collect();
}