Skip to content
Snippets Groups Projects
Commit f5c3224b authored by Eerik Kuuskoski's avatar Eerik Kuuskoski
Browse files

Upload New File

parent 7aa3ecfd
No related branches found
No related tags found
No related merge requests found
eka.py 0 → 100644
import random
luku1 = int(input("Anna 1. luku: "))
luku2 = int(input("Anna 2. luku: "))
luku3 = int(input("Anna 3. luku: "))
if(luku1 <= luku2 and luku1 <= luku3):
print("Luku 1 oli pienin")
elif(luku2 <= luku1 and luku2 <= luku3):
print("Luku 2 oli pienin")
else:
print("Luku 3 oli pienin")
\ 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