よじろめ覚書

私の理解度重視のソースコードです。

2019-08-28から1日間の記事一覧

ABC061A - Between Two Integers

ABC

問題:A - Between Two Integers #include <iostream> using namespace std; int main(void) { int a, b, c; cin.tie(0); ios::sync_with_stdio(false); cin >> a >> b >> c; cout << (a <= c && c <= b? "Yes" : "No") << "\n"; return 0; }</iostream>