Logo lxylluvio的博客

博客

A+B Problem.

2022-02-06 14:21:05 By lxylluvio
#include<bits/stdc++.h>
using namespace std;
signed main(int argc,char*argv[]){
    int n;
    cin >> n;
    int m;
    cin >> m;
    int dd = min(n,m);
    int db = max(n, m);
    int ddv = db, ddd = dd;
    ddv ^= ddv;
    dd += ddv;
    cout << dd + db << '\n';
    return 0;
}

评论

dddaaa
hahaha, 好玩 ```cpp #include<bits/stdc++.h> using namespace tsd; signed main(){ int a,b;cin>>a>>b;cout<<a+b; return 0; } ```
lxylluvio
好像可以用模拟退火啊
tzc_wk
该评论已被删除
SolarPea
该评论已被删除

发表评论

可以用@mike来提到mike这个用户,mike会被高亮显示。如果你真的想打“@”这个字符,请用“@@”。