Run ID:120240

提交时间:2025-05-24 15:38:51

#include <bits/stdc++.h> using namespace std; int main(){ int max=-1; for(int i=1;i<=7;i++){ int e; cin>>e; if(e>max){ max=e; } } cout<<max*max<<endl<<max*max*max; }