# Example: input and output name = input("Enter your name :") print("Hello", name) x = 7 y = 3.14159 print(x) print(y) print() dividend = int(input("Enter a dividend :")) divisor = int(input("Enter a divisor :")) quotient = dividend / divisor remainder = dividend % divisor print(dividend, "/", divisor, "=", quotient, "remainder =", remainder) my_string = "hello" print( (my_string + " ") * 3) print("hello " * 3) print("\"hello\"")