fork download
  1. #include <iostream>
  2. #include <ratio>
  3.  
  4. int main()
  5. {
  6. typedef std::ratio<1,3> one_third;
  7. typedef std::ratio<2,4> two_fourths;
  8. typedef std::ratio_add<one_third,two_fourths> sum;
  9. std::cout << sum::den << std::endl;
  10. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
6