#include <iostream>
using namespace std;
int main()
{
int totalMass = 0;
for(int i = 0; i < 12; ++i)
int temp; cin >> temp;
totalMass += temp;
}
cout << "Масса комплекта из 12 предметов: " << totalMass;
return 0;
#include <iostream>
using namespace std;
int main()
{
int totalMass = 0;
for(int i = 0; i < 12; ++i)
{
int temp; cin >> temp;
totalMass += temp;
}
cout << "Масса комплекта из 12 предметов: " << totalMass;
return 0;
}