Coding_test(백준)/Python6 [Python]백준 10869번: 입출력과 사칙연산 단계 - 사칙연산 a,b = map(int, input().split()) print(a+b) print(a-b) print(a*b) print(a//b) print(a%b) 2023. 4. 16. [Python]백준 1008번: 입출력과 사칙연산 단계 - A/B a,b = map(int, input().split()) print(a/b) 2023. 4. 16. [Python]백준 10998번: 입출력과 사칙연산 단계 - A×B a,b = map(int, input().split()) print(a*b) 2023. 4. 16. [Python]백준 1001번: 입출력과 사칙연산 단계 - A-B a,b = map(int, input().split()) print(a-b) 2023. 4. 16. [Python]백준 1000번: 입출력과 사칙연산 단계 - A+B a,b = map(int, input().split()) print(a+b) 2023. 4. 16. [Python]백준 2557번: 입출력과 사칙연산 단계 - Hello World print("Hello World!") 2023. 4. 16. 이전 1 다음