a,b = map(int,input().split())
print(a+b)
그리고 다른 사람이 쓴 한줄 답
print(sum(list(map(int,input().split()))))
사칙연산 틀린 이유
두 자연수 A와 B가 주어진다.
이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오.
A,B = map(int,input().split())
print(A+B)
print(A-B)
print(A*B)
print(A/B)
print(A%B)
몫 + 소수점이 나와버려서
수정
A,B = map(int,input().split())
print(A+B)
print(A-B)
print(A*B)
print(A//B)
print(A%B)
'[Dev] 🎯Self Study' 카테고리의 다른 글
[백준] 알고리즘 10430번~ 조건문 (0) | 2023.05.27 |
---|---|
[알고리즘] 시험 준비 (0) | 2023.05.27 |
[알고리즘 파이썬] 순열과 조합 (0) | 2023.05.23 |
[알고리즘] Do it! 파이썬 (2) | 2023.05.22 |
[알고리즘 파이썬] SW expert academy (0) | 2023.05.19 |