10 lines
193 B
C++
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';
|
|
}
|