#include <bits/stdc++.h>
using namespace std;

int main() {
    int t;
    cin >> t;
    while (t) {
        t--;
        long long n;
        cin >> n;
        cout << (n / 2) * 3 + 1 << '\n';
    }
    return 0;
}
