Untitled
Anonymous
plain_text
11/19/2022 4:54 PM
476 B
12
Indexable
#include <iostream>
#include <string>
using namespace std;
int main() {
string aboo; cin >> aboo;
string fff; cin >> fff;
if (aboo.length() > fff.length()) {
cout << aboo;
}
if (aboo.length() < fff.length()) {
cout <<fff;
}
if (aboo.length() == fff.length()) {
cout << "Oni ravny";
}
}Editor is loading...