#include <iostream>
using namespace std;
void india(){
cout<<"you r in india rn "<<endl;
return;
}
void usa(){
india();
cout<<" u r in usa rn "<<endl;
return;
}
int main() {
usa();
cout<<"booom "<<endl;
india();
}
To embed this project on your website, copy the following code and paste it into your website's HTML: