![백준알고리즘 9498번](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FudnCD%2Fbtqwvp9hymz%2FimigQ9dIxUF7JvIM8Wf2wK%2Fimg.png)
백준알고리즘 9498번 문제 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. 사용언어 : python3 a = input() score = int(a) if 90
![백준알고리즘 1330번](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FXddQs%2FbtqwsXfzoGp%2FLc8CLbGK6lUsZh8R4EHal0%2Fimg.png)
백준알고리즘 1330번 문제 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. 사용언어 : python3 input1, input2 = input().split() a = int(input1) b = int(input2) if(a>b): print(">") if(a
![백준알고리즘 1008번](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbYbeiL%2FbtqwtSY9Tz5%2F8lS7ru5QLq2P2U0kPJIXJK%2Fimg.png)
백준알고리즘 1008번 문제 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. 사용언어 : python3 input1, input2 = input().split() a = int(input1) b = int(input2) print(a/b)
![백준알고리즘 1001번](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbQ2pn8%2FbtqwvqAkye5%2F70E7UI1dvUZAfVDvK07tlk%2Fimg.png)
백준알고리즘 1001번 문제 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. 사용언어 : python3 input1, input2 = input().split() a = int(input1) b = int(input2) print(a-b)
![백준알고리즘 1000번](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fek4eCm%2FbtqwvM4dEcS%2FLCKwg9RA5nHtEmYBlfVsN0%2Fimg.png)
문제 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. 사용언어 python3 input1, input2 = input().split() a = int(input1) b = int(input2) print(a+b) 한 번에 2번의 입력을 받은 뒤 받은 입력을 int형으로 변환 후 print로 출력