Untitled
unknown
plain_text
2 years ago
238 B
16
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