Files
Algorithms-snippets/playground/solution.cpp
2024-11-30 23:25:28 +05:30

9 lines
122 B
C++

#include <iostream>
using namespace std;
int main(){
int a,b;
cin >> a >> b;
cout << a << ' ' << b << '\n';
}