Skip to content
Snippets Groups Projects
Commit d1021612 authored by Juuso Tuominen's avatar Juuso Tuominen
Browse files

Upload New File

parent bbb14fa4
No related branches found
No related tags found
No related merge requests found
eka.py 0 → 100644
luku1 = int(input("Anna 1. luku: "))
luku2 = int(input("Anna 2. luku: "))
luku3 = int(input("Anna 3. luku: "))
if luku1 < (luku2 or luku3):
print(f"Pienin luku oli {luku1}.")
elif luku2 < (luku3 or luku1):
print(f"Pienin luku oli {luku2}.")
elif luku3 < (luku2 or luku1):
print(f"Pienin luku oli {luku3}.")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment