Files
cpp-dojo/src/decleration.cpp
2024-07-26 15:16:11 +03:00

14 lines
255 B
C++

#include <iostream>
using std::cin;
using std::cout; using std::endl;
int main()
{
cout << "Enter two numbers:" << endl;
int v1, v2;
cin >> v1 >> v2;
cout << "The sum of " << v1 << " and " << v2
<< " is " << v1 + v2 << endl;
return 0;
}