โช Choose the correct option.
What will be the output of the following program ?
#include
class Logic {
public:
Logic() {
cout<< "Hello";
}
~Logic() {
cout<< "India";
}
};
int main() {
Logic obj;
return 0;
}