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
- Forensics
- MySQL
- SuNiNaTas
- Incognito
- Python
- wargame
- Database
- writeup
- Text
- N0Named
- HackCTF
- Network
- 사칙연산
- 인코그니토
- cryptography
- 구현
- 정렬
- Web
- 문자열
- 수학
- xcz.kr
- misc
- C
- Digital Forensics
- 그리디 알고리즘
- php
- Web Hacking
- 써니나타스
- 백준
- CTF
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 13420번 사칙연산 본문
[Baekjoon/Python3] 13420번 사칙연산
for i in range(int(input())):
a, b = input().split('=')
if eval(a) == int(b): # eval('str') : compute <-- Vulnerable
print('correct')
else:
print('wrong answer')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 13866번 팀 나누기 (0) | 2020.12.07 |
---|---|
(추가예정) [Baekjoon/Python3/C++] 13505번 두 수 XOR (0) | 2020.12.07 |
[Baekjoon/Python3] 13163번 닉네임에 갓 붙이기 (0) | 2020.12.07 |
[Baekjoon/Python3] 12756번 고급 여관 (0) | 2020.12.07 |
[Baekjoon/Python3/Text] 12096번 (0) | 2020.12.07 |
Comments