Skip to content
Snippets Groups Projects
Commit abc9a100 authored by Essi Kerola's avatar Essi Kerola
Browse files

Upload New File

parent c09d897a
No related branches found
No related tags found
No related merge requests found
eka.py 0 → 100644
luku1 = int(input("Anna luku 1.: "))
luku2 = int(input("Anna luku 2.: "))
luku3 = int(input("Anna luku 3.: "))
if luku1 < luku2 and luku1 < luku3:
print(f"Pienin luku oli {luku1}.")
if luku2 < luku1 and luku2 < luku3:
print(f"Pienin luku oli {luku2}.")
if luku3 < luku2 and luku3 < 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.
Finish editing this message first!
Please register or to comment