Update and Book added

This commit is contained in:
Mert Gör
2024-07-26 15:16:11 +03:00
parent 815bd75dbd
commit 2721733888
4 changed files with 34 additions and 0 deletions

13
src/decleration.cpp Normal file
View File

@ -0,0 +1,13 @@
#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;
}