Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- C
- php
- 사칙연산
- CTF
- misc
- 정렬
- SuNiNaTas
- 인코그니토
- HackCTF
- Python
- Forensics
- 구현
- wargame
- Web
- 써니나타스
- writeup
- Web Hacking
- Digital Forensics
- Text
- MySQL
- cryptography
- xcz.kr
- 문자열
- Database
- 백준
- N0Named
- 수학
- 그리디 알고리즘
- Incognito
- Network
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2935번 소음 본문
[Baekjoon/Python3] 2935번 소음
a = int(input())
op = input()
b = int(input())
if op == '+':
print(a + b)
else:
print(a * b)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2953번 나는 요리사다 (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 2941번 크로아티아 알파벳 (0) | 2020.12.04 |
[Baekjoon/Python3] 2920번 음계 (0) | 2020.12.04 |
[Baekjoon/Python3] 2914번 저작권 (0) | 2020.12.04 |
[Baekjoon/Python3] 2908번 상수 (0) | 2020.12.04 |
Comments