fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. std::uint32_t ag_time_sum = 31330U;
  6. // If the array is full get the average
  7. std::uint32_t avg_ag_time = ag_time_sum;
  8. avg_ag_time = avg_ag_time / 64U;
  9.  
  10. cout << avg_ag_time;
  11. return 0;
  12. }
Success #stdin #stdout 0s 5676KB
stdin
Standard input is empty
stdout
489