Run ID:148169

提交时间:2026-02-09 19:52:02

#include<bits/stdc++.h> using namespace std; int main() { int c; cin>>c; while(c--) { int n; cin >> n; long long s = n * n; cout << s << endl; } return 0; }