mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
6 lines
103 B
Python
6 lines
103 B
Python
def problem_p03192(input_data):
|
|
N = list(eval(input_data))
|
|
|
|
ans = N.count("2")
|
|
|
|
return ans
|