#include using namespace std; long long t,n; int main() { cin >> t; while (t--) { cin >> n; cout << n*(n+1)<< "\n"; } return 0; }