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