?
/*************************************************************************
> File Name: ex1.5.cpp
> Author:
> Mail:
> Created Time: Thu 18 Jan 2024 08:53:16 AM CST
************************************************************************/
#include<iostream>
using namespace std;
int main(){
cout<<"Etner two numbers: "<<endl;
int v1 = 0, v2 = 0;
cin>>v1>>v2;
cout<<"The sum of "<<v1<<" and "<<v2<<" is " <<v1 + v2<<endl;
return 0;
}