题目描述

Write a program and input two integers in main and pass them to the constructor of the class. Show the result of the addition of two numbers.


输入格式


输出格式


样例数据

输入

5 4

输出

9

备注

The main function is provided, you only need to complete the Addition Class:

int main(){
    int a,b;
    cin>>a>>b;
    Addition add(a,b);
    cout<<add.showAddition()<<endl;
}

操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解