6 lines
89 B
C++
6 lines
89 B
C++
|
#include <iostream>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::cout << "Welcome to the runtime!" << std::endl;
|
||
|
}
|