Biểu thức #1

View as PDF



Authors:
Problem types
Points: 100 Time limit: 1.0s Memory limit: 640M Input: stdin Output: stdout

Viết chương trình nhập vào \(3\) số nguyên \(x, y\)\(z\). Hay in ra màn hình giá trị biểu thức \((x − y) × z\).

Input

  • Ba số nguyên \(x, y, z \ (x, y, z \leq 10^9)\), mỗi số trên \(1\) dòng.

Output

  • In ra số nguyên là đáp án.

Example

Test 1

Input
10 
1 
3 
Output
27

Comments


  • 0
    bonniviro123    1:44 p.m. 5 dec, 2024

    ez boi

    x = int(input())
    y = int(input())
    z = int(input())
    print((x-y)*z)
    


    • 0
      hovancong1234    2:45 p.m. 28 nov, 2024

      x=int(input())
      y=int(input())
      z=int(input())
      print((x-y)*z)


      • -2
        huynhnguyendangquandng    5:35 p.m. 23 sep, 2024

        x=int(input())
        y=int(input())
        z=int(input())
        print((x-y)*z)


        • -1
          huynhnguyendangquandng    5:34 p.m. 23 sep, 2024

          x=int(input())
          y=int(input())
          z=int(input())
          print((x-y)*z)


          • -4
            Pham_Vinh14    8:26 a.m. 9 aug, 2024

            x=int(input())
            y=int(input())
            z=int(input())
            print((x-y)*z)
            code đây mn


            • 0
              vlmduc2711    10:53 a.m. 15 jul, 2024

              a


              • 0
                vlmduc2711    10:53 a.m. 15 jul, 2024

                chim


                • -1
                  tranvanminhnhat123    5:44 a.m. 12 apr, 2024

                  include<bits/stdc++>

                  using namespace std;
                  int main ()
                  {
                  long long x,y,z;
                  cin>>x>>y>>z;
                  cout<<(x-y)*z;
                  return 0;
                  }
                  C ++ nha mn


                  • 1
                    Avocadorable    8:08 p.m. 23 feb, 2024
                    x = int(input())
                    y = int(input())
                    z = int(input())
                    print((x-y)*z)
                    

                    • -1
                      anhbaminhsang    9:52 p.m. 3 nov, 2023

                      Bài này chắc phải dùng quy hoạch động, dfs, bfs thôi 😅

                      • 8 more comments