fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int x,y;
  5. int main() {
  6.  
  7.  
  8. x=10;
  9. y=20;
  10. cout<<"x= "<<x<<"\t"<<"y= "<<y<<endl;
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
x= 10	y= 20