>> Challenge accepted. N! pentru N foarte mare cât să iasă din
>> sizeof(long long long) :)
>
> Python can do that too. :P
And string operations also take about 100 to 1000 times more in Python.
Try this in python:
std::string s;
for (int i = 0; i < 1000; ++i) {
s += "string";
}