#include<iostream> using namespace std; int main(){ int k,h; cin>>h; for(int i=0;i<h;++i){ cin>>k; cout<<2*k<<" "; } return 0; }