Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cmath>
- using namespace std;
- int main() {
- int first, second, point;
- cin >> first >> second >> point;
- cout << (point <= first && point >= second || point >= first && point <= second ? "in" : "out")
- << endl << min(abs(first - point), abs(second - point)) << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement