fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n, d, e, zbir;
  6. n=49;
  7. d=n/10;
  8. e=n%10;
  9. zbir=d+e;
  10. cout<<zbir;
  11. return 0;
  12. }
Success #stdin #stdout 0s 4380KB
stdin
Standard input is empty
stdout
13