use std::io::Read; fn main() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut l = s.lines(); let n = l.next().unwrap().parse::().unwrap(); if l.clone().all(|s| s.ends_with('1')) { println!("A=⊤"); return; } if l.clone().all(|s| s.ends_with('0')) { println!("A=⊥"); return; } let a: Vec<_> = l .flat_map(|s| { if s.ends_with('0') { None } else { let q = s .split(' ') .enumerate() .flat_map(|(i, c)| { if i == n { None } else { Some(format!( "{}P_{}", if c == "1" { "" } else { "¬" }, i + 1 )) } }) .collect::>(); Some(format!("({})", q.join("∧"))) } }) .collect(); println!("A={}", a.join("∨")); }