#include <iostream>
using namespace std;
int main()
{
int n;
cout << "Введите натуральное число n: ";
cin >> n;
int s = 0;
while(n > 0)
s = s + 10;
n = n - 1;
}
cout << s;
return 0;
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "Введите натуральное число n: ";
cin >> n;
int s = 0;
while(n > 0)
{
s = s + 10;
n = n - 1;
}
cout << s;
return 0;
}