#include<cstdlib>
#include<iostream>
int main()
{
int v1 = 2, v2 = 3;
std::cout << "the num1:" << v1 << std::endl;
std::cout << "the num2:" << v2 << std::endl;
std::cout << "the add:" << v1 + v2 << std::endl;
std::cout << "the mult:" << v1*v2 << std::endl;
system("pause");
return 0;
}