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