fork download
  1. #include <iostream>
  2.  
  3. int main(){
  4.  
  5. std::cout << "Hi ! Abhay in which country do you live?" << std::endl;
  6.  
  7. int country;
  8.  
  9. std::cin >> country;
  10.  
  11. std::cout << "Abhay you live in" << country <<"." << std::endl;
  12.  
  13. return 0;
  14.  
  15. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Hi ! Abhay in which country do you live?
Abhay you live in32766.