0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 16:25:25 +00:00
OI-codes/AcWing/811/811.cpp

17 lines
213 B
C++
Raw Normal View History

#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;
}