fork download
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7. unsigned char tot;
  8.  
  9. unsigned char ca = 200;
  10. unsigned char ca2 = 200;
  11.  
  12. tot = ca * ca2;
  13.  
  14. cout << (int)tot;
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
64