fork download
  1. #include <iostream>
  2.  
  3.  
  4. int main() {
  5. // your code goes here
  6. unsigned char b;
  7. std::cout << "Введите Б" << std::endl;
  8. std::cin >> b;
  9. std::cout << int(b) << std::endl;
  10. std::cout << "Введите б" << std::endl;
  11. std::cin >> b;
  12. std::cout << int(b);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 3100KB
stdin
Б б
stdout
Введите Б
208
Введите б
145