-
Hajipur, Bihar, 844101
Sharpen your programming skills by solving a new CPP Programming coding problem everyday!
5 10
10 5
To unlock the official solution code and explanation, you must successfully solve today's challenge or wait for today's challenge to end.
#include <iostream>
using namespace std;
int main() {
int a, b;
if (cin >> a >> b) {
int temp = a;
a = b;
b = temp;
cout << a << " " << b;
}
return 0;
}