#include <iostream> using namespace std; int main() { int a, b;//定义来两个整数 cin >> a >> b;//输入两个整数 cout << a + b << ' '<< a*b << endl; return 0; }