mirror of
https://github.com/Hizenberg469/Algorithms-snippets.git
synced 2026-04-19 22:52:23 +03:00
9 lines
122 B
C++
9 lines
122 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main(){
|
|
int a,b;
|
|
cin >> a >> b;
|
|
cout << a << ' ' << b << '\n';
|
|
} |