#include <iostream>

class animal{
    public:
    int a;
    int add(int a,int b){
        int sum = a+b;
        return sum;
    }
};

int main() {
    animal a1;
    a1.a=5;
    int sum = a1.add(4,6);
    std::cout<<sum<<std::endl;
}

Embed on website

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