January 14, 2021

Новая статья

Hello, world!

#include <iostream>
#include <cstdlib> 
using namespace std;

int main()
 {
    cout << "Hello, world!" << endl;
    system("pause"); 
    return 0;
 }