#!/usr/bin/python3
#import time
from time import time #apo to pcaketo time fortose mono class time
from random import random
from random import seed
#import random
def main():
	#kalw to packeto time.py --> class time --> time()
	x=int(time())
	print(x)
	#kalw to packeto random.py -> class random -> random()[0,1], seed(), randint (a,b)
	seed(time())
	print (random())
	print (randint(1,10))





if __name__=="__main__":
	main()
