//FIRST
#include
using namespace std;
int main()
{
int n1;//Первый элемент
cin>>n1;
int step;//Шаг прогрессии
cin>>step;
int quantity;//Какой элемент найти
cin>>quantity;
cout<<n1+ (quantity-1)*step;</p>
return 0;
}
//-----------------------------------------------------------------------------------------
//SECOND
//Использовал STL
#include
#include
#include
#include
#include
using namespace std;
int main()
{
srand(time(NULL));
int n;
cin>>n;
vectorarr(n);
for(int i = 0;i
arr[i]=rand()%100;
}
sort(arr.begin(), arr.end());
cout<<arr[n-1];</p>
return 0;
}
//4 - X3