Max 3 số

View as PDF




Authors:
Problem types
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


  • 0
    tiendat05022014    8:29 a.m. 18 jul, 2024

    A


    • 0
      giathinhd061    10:44 a.m. 15 jul, 2024

      a = int(input())
      b = int(input())
      c = int(input())
      print(max(a,b,c))


      • 0
        longabcd    9:14 a.m. 31 jan, 2024

        Thế này là sao vậy admin???

        1 reply

        • -3
          duongngocuyentp    8:57 a.m. 9 jul, 2022 edited

          ok


          • -7
            trần_đức_bo    8:22 p.m. 6 jun, 2022

            This comment is hidden due to too much negative feedback. Click here to view it.


            • -9
              duyanhloveav    9:19 p.m. 11 aug, 2021

              This comment is hidden due to too much negative feedback. Click here to view it.


                • -18
                  new4phanvanquocdat    10:15 a.m. 23 aug, 2020

                  This comment is hidden due to too much negative feedback. Click here to view it.

                  1 reply

                  • 7
                    SPyofgame    2:36 a.m. 19 jun, 2020

                    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\)