fork download
  1. #include<iostream>
  2.  
  3.  
  4. int x;
  5. int y;
  6. int a;
  7.  
  8.  
  9. int main() {
  10. std::cout<<"enter values in x and y";
  11. std::cin>>x>>y;
  12. a=x+y;
  13. std::cout<<"to a einai iso me"<<a; // your code goes here
  14.  
  15. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
enter values in x and yto a einai iso me0