import mymodule

name = input("Hi! What is your name? ")
mymodule.greeting(name)

mymodule.adding(5, 2)
mymodule.subtracting(5, 2)
mymodule.multiplication(5, 2)
mymodule.division(5, 2)

mymodule.fibonacci(10)

Hello, Nandan
The sum of the two numbers is 7
The difference of the two numbers is 3
The product of the two numbers is 10
The quotient of the two numbers is 2.5
0
1
1
2
3
5
8
13
21
34