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

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