1 #include <iostream>
2 
main()3 int main()
4 {
5     std::cout << "Hello" << std::endl;
6 
7     return 0;
8 }
9