##########################################################################################
##################################### Exercice 1 #########################################
##########################################################################################
def hello():
    print("Hello World!")



def reply_to():
    print("The user replied: \"Hello, this is the first time I talk to a computer this way\"")



def nice_break():
    print("Nice to meet you.\nAnd the user replied: \"Likewise\".")

hello()


reply_to()

nice_break()


##############################################################################################
#########################################Exercice 2###########################################
#############################################################################################
from random import *


def random_sum():
    a=randint(0,100)
    b=randint(0,100)
    c=a+b
    print("The sum "+ str(a) + "+ " + str(b) + " is equal to "+ str(c) )
    
    
random_sum() 




################################################################################################
########################################Exercice 3#############################################
##############################################################################################

def modulo(a,b):
    return a%b
    
print(modulo(16,2))   

def div(a,b):
    return (a - modulo(a,b))/b

print(div(11,2))
