[백준 10998 파이썬/python] AxB
Algorithm/baekjoon
2023. 2. 27. 14:03
A, B = input().split() print(int(A)*int(B))
[백준 1001 파이썬/python] A-B
Algorithm/baekjoon
2023. 2. 27. 14:02
A,B = input().split() print(int(A)-int(B))
[백준 1000 파이썬/python] A+B
Algorithm/baekjoon
2023. 2. 27. 13:59
a, b = input().split() print(int(a) + int(b))