Josif_tepe

Untitled

Jan 19th, 2026
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.    
  6.     int a, b, c;
  7.     cin >> a >> b >> c;
  8.    
  9.    
  10.     if(a <= b and a <= c) {
  11.         cout << a << " ";
  12.        
  13.         if(b <= c) {
  14.             cout << b << " " << c << endl;
  15.         }
  16.         else {
  17.             cout << c << " " << b << endl;
  18.         }
  19.        
  20.     }
  21.     return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment