#include<iostream>
using std::cout;
using std::endl;
using std::cin;
int main()
{
    const int a=32;
    cout<<a<<endl;
    a=45;
    cout<<a<<endl;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: