Here is the converted C++ code:
```cpp
#include <iostream>
int main() {
std::cout << "hello" << std::endl;
return 0;
}
```
Assumptions:
- Print() in Python is equivalent to std::cout in C++ for printing to console
output.
- No return value is needed in Python but main() should return int in C++.
- Include iostream for cout.
- std::endl is used to end the line after printing.