fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.  
  8. int a,b,c;
  9. cin>>a;
  10. cin>>b;
  11. c=a+b;
  12. cout<<"c= "<<c;
  13.  
  14.  
  15. return 0;
  16.  
  17. }
  18.  
  19.  
Success #stdin #stdout 0.01s 5320KB
stdin
5
9


stdout
c= 14