#include <iostream>
int main(int argc, char* argv[])
{
int i = 10;
std::cout<<"Hello World!"<<std::endl;
// ???
while(i--)
{
// ???/
for(int j=0; j<10; j++)
std::cout<<"Hello World!"<<std::endl;
}
return 0;
}
??= #
??/ \
??' ^
??( [
??) ]
??! |
??< {
??> }
??- ~
Source: https://habr.com/ru/post/41584/
All Articles