use proconio::input; fn main() { input! { a: i32, b: i32, o: i32, w: i32, } let ans = (o + a + w).max(o + b + w); println!("{ans}"); }