10 строки
139 B
C++
10 строки
139 B
C++
|
#include <iostream>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::cout << "hello, world!" << std::endl;
|
||
|
std::cout << "hello, world!" << std::endl;
|
||
|
return 0;
|
||
|
}
|
||
|
|