题面
Input two integers a and b of type int, and output average integer of them. Test the program with data in range from INT_MIN to INT_MAX.
样例
输入
2 7
输出
4
输入
2147483647 2147483647
输出
2147483647
提示
Note: only type int can be used in the program.
Input two integers a and b of type int, and output average integer of them. Test the program with data in range from INT_MIN to INT_MAX.
2 7
4
2147483647 2147483647
2147483647
Note: only type int can be used in the program.