Run ID:93789
提交时间:2024-10-19 11:19:58
#include<iostream> using namespace std; int main(){ int score; int max=0; for(int i=1;i<=7;i++){ cin>>score; if(score>max){ max = score; } } cout<<max*max<<" "<<max*max*max; }