7 lines
94 B
C++
7 lines
94 B
C++
#include <iostream>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
std::cout << "Hi" << std::endl;
|
|
}
|