#include<iostream>
int main()
{
std::cout << "请输入两个数:" << std::endl;
int v1, v2;
std::cin >> v1 >> v2;
printf("result: = %d ", v1+v2);
return 0;
}