[백준] 백준 Python3 24264번 문제 및 소스코드

2024. 10. 8. 13:05Coding/백준-Python

1. 문제 링크

https://www.acmicpc.net/problem/24264

2. 문제

 

3. 소스코드

n = int(input())
print(n**2)
print(2)