#include <stdio.h>
//関数のプロトタイプ宣言
int max(int, int);
//ここ↓を埋めてね１

//main関数
int main(void) {
    int a,b,c,d;
//ここ↓を埋めてね２
a = 3;
b = 8;
c = 2;
d = 5;

printf("%d\n", max(max(a,b), max(c,d)));
	return 0;
}

//max関数の定義
int max(int x, int y){
//ここ↓を埋めてね３

  return (x > y) ? x : y;
}


