Submit solution
Points:
100.00 (partial)
Time limit:
1.0s
Memory limit:
512M
Input:
stdin
Output:
stdout
Author:
Problem type
Allowed languages
Python, Scratch
Comments
code python a = int(input()) b = int(input()) c = int(input()) print(max(a,b,c)+min(a,b,c)) nhớ xuống hàng sau khoảng trắng
This comment is hidden due to too much negative feedback. Show it anyway.
Bạn có thể dùng min() và max() để tìm số lớn nhất và bé nhất của dãy số mà. (Sau khi cho cả a,b,c vào dãy số)