1. 程式人生 > >新生賽

新生賽

#include<cstdio>

using namespace std;

int T, temp;

int main()
{
    scanf("%d",&T);

    while(T--)
    {

        scanf("%d",&temp);
        printf("%d\n",temp-1);
    }

}