Henu ACM Round#19 A Vasya the Hipster

Posted Visitor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Henu ACM Round#19 A Vasya the Hipster相关的知识,希望对你有一定的参考价值。

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


模拟题。
两个一起用->min(a,b);
剩下的除2加上去就好

【代码】

#include <bits/stdc++.h>
using namespace std;

int a,b;

int main()
{
    cin >> a >> b;
    cout<<min(a,b)<<' '<<abs(a-b)/2<<endl;
    return 0;
}

以上是关于Henu ACM Round#19 A Vasya the Hipster的主要内容,如果未能解决你的问题,请参考以下文章

Henu ACM Round#19 D Points on Line

Henu ACM Round#19 C Developing Skills

Henu ACM Round#19 B Luxurious Houses

Henu ACM Round#19 E Om Nom and Candies

Henu ACM Round#18 A Multiplication Table

Henu ACM Round#16 A Bear and Game