fork download
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5.  
  6. int first_number, second_number, sum=0;
  7. cout<<"Enter the first number: ";
  8. cin>>first_number;
  9. cout<<"Enter the second number: ";
  10. cin>>second_number;
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Enter the first number: Enter the second number: