Python:
a=int(input('a= '))
b=int(input('b= '))
if a<b:
print('a la so be nhat')
if a>b:
print('b la so be nhat')
else:
print('a=b')
Đúng 1
Bình luận (0)
uses crt;
var a,b:integer;
begin
clrscr;
readln(a,b);
if (a<b) then write(a)
else write(b);
readln;
end.
Đúng 0
Bình luận (0)