fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a,b,sum;
  6. {
  7. cin>>a>>b;
  8. a=3;
  9. b=5;
  10. sum=a+b;
  11. cout<<sum<<endl;
  12.  
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0s 4340KB
stdin
Standard input is empty
stdout
8