Problem B: 【函数】最大值函数

Problem B: 【函数】最大值函数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 3999  Solved: 2073
[Submit] [Status] [Web Board] [Creator:]

Description

本题要求实现一个自定义函数:求4个整数的最大值。

函数接口定义:

int max(int a,int b,int c,int d);

裁判测试程序样例:


Input

每个输入包括4个整数,整数之间用空格隔开。

测试数据有多组,处理到输入结束

Output

输出4个整数的最大值,每个输出占1行。

Sample Input Copy

2 6 5 1
1 2 9 8

Sample Output Copy

6
9

HINT

特别提醒,本题只需要提交指定的函数定义即可,主函数无需提交。