K
Khách

Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.

#include <bits/stdc++.h>
using namespace std;
#define nmax 1000007
#define ll long long
int main()
{
    cin.tie(0)->sync_with_stdio(0);
    long long a, b, c, d;
    cin >> a >> b >> c >> d;
    cout << max({a, b, c, d});
}

16 tháng 6

Var a,b,tam:longint;

Begin

Write('Nhap vao so a = ');readln(a);

Write('Nhap vao so b = ');readln(b);

If a > b then

Begin

tam:=a;

a:=b;

b:=tam;

End;

Writeln('a = ',a);

Write('b = ',b);

Readln;

End.

#include <bits/stdc++.h>
using namespace std;
#define nmax 1000007
#define ll long long
void cd(long long a, long long b)
{
    if (a > b)
        swap(a, b);
    cout << a << ' ' << b;
}
int main()
{
    cin.tie(0)->sync_with_stdio(0);
    long long a, b;
    cin >> a >> b;
    cd(a, b);
}

D
datcoder
CTVVIP
18 tháng 5

D
datcoder
CTVVIP
18 tháng 5

D
datcoder
CTVVIP
18 tháng 5

D
datcoder
CTVVIP
18 tháng 5