본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24077번 比較 (Comparison)

by 현장 2023. 6. 30.

-Code

n, m = map(int, input().split())
a_list = list(map(int, input().split()))
b_list = list(map(int, input().split()))

res = 0

for a in a_list:
    for b in b_list:
        if a <= b:
            res += 1

print(res)