luyencode / comments

Server lưu trữ bình luận trên Luyện Code
https://luyencode.net
6 stars 3 forks source link

https://oj.luyencode.net/problem/GFRIEND #832

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

Quà tặng bạn gái - Luyện Code Online

https://oj.luyencode.net/problem/GFRIEND

danh2006 commented 1 year ago
Xem code AC

#include using namespace std; int main(){ long long a, b; cin >> a >> b; if(ab) cout << "1"; }

hoangdev0 commented 1 year ago

Đây là lời giải của mình đã AC. C++.

Xem code AC

```c++ #include using namespace std; int main() { int a,b; cin >> a >> b; cout << int(a>b); return 0; } ```

hoangdev0 commented 1 year ago

Đây là lời giải của mình đã AC. Python3

Xem code AC

```python a,b = [int(i) for i in input().split()] print(int(a>b)) ```