Untitled
unknown
plain_text
3 years ago
356 B
4
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...