##Greeting
name_input = input("Enter your name: ")
greeting = f"Hi, {name_input}! Welcome to CSP."
print(greeting)

##Question 1
num1Int = 2
num2Int = 4
print(num1Int + num2Int)

##Question 2
float1 = 4.6
float2 = 2.3
print(float1 / float2) 

#Question 3
sentence = "{0} is {1} cool"

print(sentence.format("Sri", "very"))

print (sentence.format("Srini", "not"))



Hi, sri! Welcome to CSP.
6
2.0
Sri is very cool
Srini is not cool