# C++(value assigned)

Python:

```python
x = 5
print(x)
```

C++

```cpp
#include<iostream>
int main()
{
    int x;
    x = 5;
    //std::endl == '\n': create a new line
    std::cout<<x<<std::endl;
    return 0;
}
```
