#include<iostream>
#include<conio.h>
#include<Windows.h>
#include<cmath>
using namespace std;
int main() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
int a=0,b;
cout << "Введите число ";
cin >> a;
b = a;
do {
a += 5;
} while (a<b*10);
cout << a;
_getche();
return 0;
}
#include<iostream>
#include<conio.h>
#include<Windows.h>
#include<cmath>
using namespace std;
int main() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
int a=0,b;
cout << "Введите число ";
cin >> a;
b = a;
do {
a += 5;
} while (a<b*10);
cout << a;
_getche();
return 0;
}