Правильный
Объяснение:
#iclude <iostream>
using namespace std;
int main(){
int Part, S;
cout << "Type part of the cube:";
cin >> Part;
S = Part * 6;
S = S * S;
cout << "\nS = " << S << "\n";
}