initial commit

This commit is contained in:
2023-07-16 13:23:25 +00:00
commit c3fa5367c3
85 changed files with 4921 additions and 0 deletions

9
C++/lesson1/task2.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <iostream>
#include <string>
int main() {
std::string a = "Hello";
std::string b = "Привет";
std::cout << a.length() << '\n';
std::cout << b.length() << '\n';
}