#include void solve() { int n, k; std::cin >> n >> k; int min = 1000, max = 0; while (n--) { int x; std::cin >> x; min = std::min(min, x); max = std::max(max, x); } std::cout << max - min << std::endl; } int main() { std::cin.tie(nullptr); std::cout.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }