Coding_test(백준)/Python
[Python]백준 10998번: 입출력과 사칙연산 단계 - A×B
byeolsub
2023. 4. 16. 23:35

a,b = map(int, input().split())
print(a*b)