fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int a,b,c;
  7. cout << "enter two no.s\n";
  8. cin >> a >> b;
  9. c=a+b;
  10. cout << a << "+" << b << "=" << c << "\n";
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
enter two no.s
326894240+21993=326916233