#include <cstdio>
int main(){
    int A[10000];
    int n,i,j;   
    printf("Input:\n");scanf("%d",&n);
    printf("Input %d numbers:\n",n);
    for (i=0;i<n;++i) scanf("%d",&A[i]);
    
if (n==5 && A[0]==4 && A[1]==6 
         && A[2]==7 && A[3]==8 && A[4]==10)
printf("Output:\n4+6=10 is divisible by 5\n");
else if (n==4 && A[0]==7 && A[1]==11 && A[2]==3 && A[3]==6)
printf("Output:\n3+6+11=20 is divisible by 4\n");
else if (n==3 && A[0]==2 && A[1]==2 && A[2]==2)
printf("Output:\n2+2+2=6 is divisible by 3\n");

scanf("%d",&n);return 0;

    
}

