I am learning HTML and CSS. This website serves as a platform for me to practice what I have learned and maybe show off my skills a bit.
Here you can see some sample source code.
int main()
{
int a = 5;
int b = 6;
cout << "The sum of << a << and << b << "is : " << a+b << endl;
cout << "The difference of << a << and << b << "is : " << a-b << endl;
return 0;
}