• Elements are related in that they have to be run in a specific order

Example

def getUserDetails() {
	name = input('Name: ')
	age = int(input('Age: '))
	phone = input('Ph: ')
 
	# getting name first and then age and then phone
}