Ответ:
#include <iostream>
int main()
{
int x, y;
std::cin >> x >> y;
std::cout << "Ruta still has: " << x % y << std::endl;
std::cout << "Everyone got: " << x / y << std::endl;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
int main()
{
int x, y;
std::cin >> x >> y;
std::cout << "Ruta still has: " << x % y << std::endl;
std::cout << "Everyone got: " << x / y << std::endl;
}