init commit

This commit is contained in:
2025-04-13 21:48:15 +03:00
commit 23255e9121
192 changed files with 12200 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
#include <iostream>
class C
{
unsigned long long x = 0;
bool last = false;
public:
C() {
if (std::cin >> x) {
return;
}
last = true;
}
~C() {
if (last) {
return;
}
std::cout << x << " ";
}
};
void
f() {
C c;
if (std::cin.eof()) {
return;
}
f();
return;
}
int
main() {
f();
std::cout << std::endl;
return 0;
}