본문으로 바로가기

상수-2908 (python)

category 백준 문제 2019. 12. 24. 01:01

상수(2908)-문제

 

처음시도했던 방법

A_,B_=input().split()

A=int(A_)
B=int(B_)



A_1=A//100 
A_2=(A//10)%10 
A_3=A%10 

B_1=B//100 
B_2=(B//10)%10 
B_3=B%10     

Af=A_3*100+A_2*10+A_1 
Bf=B_3*100+B_2*10+B_1 

if Af>Bf: 
    print(Af) 
else: 
    print(Bf)

 

파이썬 활용

A,B,=input().split()

Af=int(A[::-1])
Bf=int(B[::-1])

print(max(Af,Bf))


if Af>=Bf:
    print(Af)
else:
    print(Bf)

 

파이썬 활용(숏코딩)

A,B,=input().split()

Af=int(A[::-1])
Bf=int(B[::-1])

print(max(Af,Bf))

'백준 문제' 카테고리의 다른 글

ATM-11399 (python)  (0) 2019.12.27
셀프넘버-4673 (python)  (0) 2019.12.27
최댓값-2562 (python)  (0) 2019.12.24
숫자의 개수-2577 (python)  (0) 2019.12.24