游客 Signup | Login
中文 | En

2835 - 求两数中的较大者

求两数中的较大者

Input

一行两个数

Output

一行 一个 数字

Examples

Input

3 5

Output

5

Solution C++

#include<iostream>
using namespace std;
int main()
{
	int a,b;
	cin>>a>>b;
	if(a>b)
	  cout<<a;
	else
	  cout<<b;  
	return 0;
}

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题