[백준/python] 1001번 - A-B / 새싹
1001번: A-B 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. www.acmicpc.net [백준/python] 1000번 - A+B / 새싹 https://www.acmicpc.net/problem/1000 1000번: A+B 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net A,B = map(int,input().split()) print(A+B) python에서 사용자의 입력을 받는 방법은 sikaro.tistory.com A,B = map(int,input().split()) print(A-B) a와 b를 입력받아 a-b를 출력해주면 된다. 자세한 입력방법에 대한 설명은 위의 1000번 문제를 참고하자.
코딩테스트/백준
2023. 1. 12. 20:43