use std::io::*;

fn main() {
    let mut s: String = String::new();
    std::io::stdin().read_to_string(&mut s).ok();
    let mut itr = s.trim().split_whitespace();
    let n: usize = itr.next().unwrap().parse().unwrap();
    let x: i64 = itr.next().unwrap().parse().unwrap();
    let s: Vec<i64> = (0..n)
        .map(|_| itr.next().unwrap().parse().unwrap())
        .collect();
    let all = s.iter().sum::<i64>();
    println!("{}", all - x * (n as i64 - 1));
}