This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/C++/lesson1/task2.cpp
2023-07-16 13:23:25 +00:00

10 lines
193 B
C++

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