#include <iostream>
using namespace std;
struct Student{
    string name;
    int age;
    float salary;
};
struct Point{};
Student operator+(Student a, Student b) {
    Student c;
    c.name = a.name + b.name;
    c.age = a.age + b.age;
    c.salary = a.salary+b.salary;
    return c;
}
int main() {
    Student x , y , z;
    x.name = "Yomna";
    x.age = 18;
    x.salary = 15.00;
    y.name = "Hana";
    y.age = 18;
    y.salary = 15.00;
    z = x + y;
    cout << z.name << endl;
    cout << z.age << endl;
    cout << z.salary << endl;
    return 0;
}