Untitled
unknown
plain_text
a year ago
236 B
6
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