12345678910
#include <string> #include <iostream> int main() { int x; std::cin >> x; std::cout << std::string(x, '*'); }