Advertisement
Radu94

Problema1

Nov 19th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include<iostream>
  2. #include<cstring>
  3. using namespace std;
  4. char a[30];
  5. char b[30];
  6. int main()
  7. {
  8.     int l1=0 , l2=0;
  9.     cin>>a>>b;
  10.     l1=strlen(a);
  11.     l2=strlen(b);
  12.     if(l1>l2)
  13.     {
  14.         cout<<a<<" "<<b;
  15.     }
  16.     else
  17.     {
  18.         cout<<b<<" "<<a;
  19.     }
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement