mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:18:47 +00:00
811. 交换数值
https://www.acwing.com/problem/content/submission/code_detail/14063770/
This commit is contained in:
parent
d89ee4b62d
commit
b0af2af171
16
AcWing/811/811.cpp
Normal file
16
AcWing/811/811.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include <iostream>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
int x, y;
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
|
||||
cin >> x >> y;
|
||||
cout << y << ' ' << x << endl;
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user