Script Viewer
C++
Example 2
Download
Save Modified
/*C++ add two numbers*/ #include
using namespace std; int main() { int a = 15; int b = 10; int c = a + b; cout << c; return 0; }