Guest User

Untitled

a guest
Dec 15th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5.     long int a, b, c, x;
  6.     cin >>a>>b>>c;
  7.     x=a;
  8.     if (x>b)x=b;
  9.     if (x>c)x=c;
  10.     cout <<x;
  11.     return 0;
  12. }
Add Comment
Please, Sign In to add comment