#include <string> #include <iostream> int main() { std::string s(21, '*'); std::cout << s << std::endl; return 0; }