일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 포인터
- 김성엽 대표님
- window
- 백준 알고리즘
- github
- blind sql injection
- 백준 파이썬
- 배열
- jQuery
- IF문
- Pwndbg
- 조건문
- burp suite
- property
- htmlspecialchars
- element 조회
- document
- xss game 풀이
- 함수
- object
- 사칙연산
- 파이썬
- 자바스크립트
- 메소드
- python
- sql injection
- xss game
- suninatas 풀이
- 객체
- lord of sql injection
Archives
- Today
- Total
power-girl0-0
사각형의 넓이 구하기 본문
728x90
def nemo(x,y):
return x*y
x = int(input("사각형 x의 길이 : "))
y = int(input("사각형 x의 길이 : "))
result = nemo(x,y)
print("사각의 넓이 : ",result)
728x90
Comments