[백준] 10998번 A*B https://www.acmicpc.net/problem/10998 10998번: A×B 두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오. www.acmicpc.net a,b=input().split() print(int(a)*int(b)) Baekjoon/Python3 2023.06.05
[백준] 1001번 A-B https://www.acmicpc.net/problem/1001 1001번: A-B 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. www.acmicpc.net a,b=input().split() print(int(a)-int(b)) Baekjoon/Python3 2023.06.05
[백준] 1000번 A+B https://www.acmicpc.net/problem/1000 1000번: A+B 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net a,b=input().split() print(int(a)+int(b)) Baekjoon/Python3 2023.06.05
[백준] 2557번 Hello World https://www.acmicpc.net/problem/2557 2557번: Hello World Hello World!를 출력하시오. www.acmicpc.net print("Hello World!") Baekjoon/Python3 2023.06.05