Points:
100 (p)
Time limit:
1.0s
Memory limit:
256M
Input:
stdin
Output:
stdout
Viết chương trình nhập vào ba số nguyên \(a, b, c\). In ra số lớn nhất của 3 số đó.
Input
- Ba số nguyên \(a,b,c\) mỗi số trên 1 dòng.
Output
- Một số nguyên là giá trị lớn nhất của 3 số.
Example
Test 1
Input
2
6
3
Output
6
Test 2
Input
-243
-543
-123
Output
-123
Comments
A
a = int(input())
b = int(input())
c = int(input())
print(max(a,b,c))
Thế này là sao vậy admin???
ok
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
https://scratch.mit.edu/projects/556127429/editor
This comment is hidden due to too much negative feedback. Click here to view it.
Spoiler Alert
Hint 1
\(max(a, b, c) = max(max(a, b), c) = max(max(b, c), a) = max(max(c, a), b)\)
\(max(a, b) = a\) khi \(a \geq b\)
\(max(a, b) = b\) khi \(a \leq b\)