Online C++ Compiler

#include <iostream> using namespace std; int main() { int a = 8; int b = 10; int c = a+b; cout << "The value of c : " << c; return 0; }