fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. bool isprime(int n){
  5. for(int i=2;i*i<=n;i++){
  6. if(n % i == 0) return false;
  7. }
  8. return true;
  9. }
  10. int main(){
  11. ios_base::sync_with_stdio(0); cin.tie(0);
  12. int t,n; cin >> t;
  13. while(t--){
  14. cin >> n;
  15. cout << n/2 << endl;
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5296KB
stdin
2
3
5
stdout
1
2