6 lines
87 B
C++
6 lines
87 B
C++
#include <iostream>
|
|
int main(){
|
|
std::cout<< "hello world" <<std::endl;
|
|
return 0;
|
|
}
|