Untitled
Anonymous
plain_text
03/06/2024 3:57 PM
320 B
28
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