【HUSTOJ】1010:大きい数II


1010:より大きい数II
Time Limit: 1 Sec  
Memory Limit: 128 MB
Submit: 228  
Solved: 180
原題リンク
Description
3つの不等な数が知られており,その中の最大数を探し出す.
Input
入力は1行のみで、3つの整数が含まれます.間をスペースで区切る.
Output
出力は1行のみ(これは末尾に戻り記号があることを意味する)で、1つの整数を含む.
Sample Input
1 2 3 

Sample Output
3

HINT
Source
#include
using namespace std;
main()
{
	int a,b,c;
	
	cin>>a>>b>>c;
	
	if(a