fork download
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. int main() {
  5.  
  6. int feet;
  7. int inches;
  8. if (!(std::cin >> std::noskipws >> feet >> inches)){
  9. std::cout << "failed to read in values" << std::endl;
  10. return -1;
  11. }
  12.  
  13. inches += feet * 12;
  14. std::cout << inches << std::endl;
  15. }
Runtime error #stdin #stdout 0s 3472KB
stdin
5 11
stdout
failed to read in values