#include int main() { int a, b; std::cin >> a >> b; for (int i = 0; i < 5; i++) std::cout << static_cast<int>(rand() % (b - a) + a) << " ";<br>}