6 lines
65 B
Python
6 lines
65 B
Python
i = 5
|
|
|
|
if i % 6 != 0:
|
|
print("nein")
|
|
else:
|
|
print("ja") |