Задание
int S = 10;
for \(int i = 2; i \\lt = 5; i\+\+\) {
S += m
}
cout << S << endl;
return 0;
}
Укажите число, которое появится на экране в результате выполнения программы.
#include < iostream>
using namespace std;
int main\(\) {
const int m
\[7\]
= {1, 3, 10, 15, 21, 30, 16};int S = 10;
for \(int i = 2; i \\lt = 5; i\+\+\) {
S += m
\[i\]
;}
cout << S << endl;
return 0;
}