Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std ;
  4.  
  5. int main ()
  6. {
  7.     int num1, num2, num3 ;
  8.     cin >> num1 >> num2 >> num3 ;
  9.     if (num1 == num2 && num2 == num3)
  10.     {
  11.         cout << boolalpha << true ;
  12.     }
  13.     else
  14.         cout << boolalpha << false ;
  15.     return 0 ;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement