fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x;
  6. cin >> x;
  7. cout << "con cu dai " << x;
  8. cout << "cm" << endl;
  9.  
  10. x = 2;
  11. cout << "skididi " << x + 100000 << endl;
  12. x = x + 5;
  13. cout << "vay tom lai kq= " << x << endl;
  14. x = x * 100;
  15. cout << "djdjjd " << x;
  16.  
  17.  
  18.  
  19. // your code goes here
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5324KB
stdin
33
stdout
con cu dai   33cm
skididi  100002
vay tom lai kq=  7
djdjjd  700