fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int t;
  6. cin>>t;
  7. while(t--){
  8. int x;
  9. cin>>x;
  10. int s=x/5;
  11. if(x%5>0) s++;
  12. cout<<x<<endl;
  13. }
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5308KB
stdin
12
stdout
5242
5242
5242
5242
5242
5242
5242
5242
5242
5242
5242
5242