Skip to content
Snippets Groups Projects
pythonLab3.3.py 200 B
Newer Older
miskamero's avatar
miskamero committed
luku = int(input("Anna kokonaisluku: "))
if luku == 10 or luku == 20:
    print("Luku on 10 tai 20")
elif luku == 100 or luku == 200:
    print("Luku on 100 tai 200")
else:
    print("Luku on ", luku)