import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int total = 0; for (int i = 0; i < n; i++) { total += sc.nextInt(); } int count = total / (n - 1); int turtle = (count - 2 * n) / 2; int bird = n - turtle; System.out.println(bird + " " + turtle); } }