def rezystancja(U,I):
	return U/I
print("R=U/I: ", rezystancja(230,0.4), "Ω")

def U():
	R = 1000
	I = 2
	return I*R
print("obliczamy U = ",U(),"V")
