Untitled
unknown
plain_text
2 years ago
236 B
9
Indexable
//Bai 4
#include <iostream>
using namespace std;
int main(){
freopen("test.inp","r",stdin);
freopen("test.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