fork(1) download
  1. #include <iostream>
  2. #include <algorithm>
  3.  
  4.  
  5. int main() {
  6. int Face1 = 10, Face2 = 5, Face3 = 8, Face4 = 20, Face5 = 21, Face6 = 9;
  7. std::cout << std::max({ Face1, Face2, Face3, Face4, Face5, Face6 }) << "\n";
  8. return 0;
  9. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
21