#include <iostream>
#include <stdio.h>
#include <cmath>

using namespace std;
class china_majan {
public:
    int han;
    int hu;
    int ko(){
        return (this->han*this->hu*3)
    }
    int oya(){
        return (this->han*this->hu*4)
    }
};

class japan_majan : public china_majan {
    int ko(){
        return (pow(2,this->han+2)*this->hu*4)
    }
    int oya(){
        return (pow(2,this->han+2)*this->hu*6)
    }
};
int main() {
    printf("&&\n");
    std::cout << "Hello world!" << std::endl;
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: