import java.util.Scanner; public class No112 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int n = s.nextInt(); s.nextLine(); int tot = 0; for(int i = 0;i < n;i++){ tot += s.nextInt(); } s.close(); tot = tot / (n-1); int k = tot / 2 - n; System.out.println(n - k + " " + k); } }