Untitled

 avatar
unknown
plain_text
a year ago
238 B
5
Indexable
//Bai 4
#include <iostream>

using namespace std;

int main(){
	freopen("GCDMAX.inp","r",stdin);
	freopen("GCDMAX.out","w",stdout);

	int t; cin >> t;
	while(t--){
		int n; cin >> n;
		cout << n/2 << endl;
	}

	return 0;
}
Editor is loading...
Leave a Comment