[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge aoj atcoder hackerrank leetcode
0

Configure Feed

Select the types of activity you want to include in your feed.

1n = int(input()) 2for i in range(1, n+1): 3 if i % 3 == 0 or '3' in str(i): 4 print(f' {i}', end='') 5print()