/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
// array : q
// array_len은 배열 array의 길이입니다.
int solution(int array[], size_t array_len, int height)
{
int answer = 0;
int s = 0;
for(int i=0; i<array_len; i++)
{
if(height < array[i])
{
}
}
return answer;
}
int main()
{
int arr = {149, 180, 192, 170};
int x = solution(arr, 4, 167);
printf("%d", x);
}
*/
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
// numbers_len은 배열 numbers의 길이입니다.
double solution(int numbers[], size_t numbers_len) {
double s, answer = 0;
for(int i=0; i<numbers_len; i++)
{
s += numbers[i];
}
printf("%d", s/numbers_len);
return answer;
}
int main()
{
int a, b;
scanf("%d %d ", &a, &b);
printf("%d", solution(a, b));
}