Problems/Prime Numbers Summedium
Time Limit: 1000ms
|
Memory Limit: 256MB
# Problem Statement Find the sum of all prime numbers up to $N$.

Sample Testcases

Sample #1
Input:
10
Output:
17
Sample #2
Input:
5
Output:
10
Sample #3
Input:
15
Output:
41
solution.py
UTF-8 | Tab: 4 spaces
Judge Console:Ready for submission