import tensorflow as tf

tf.compat.v1.disable_eager_execution()
sess = tf.compat.v1.Session()

a = tf.constant(5.0)
b = tf.constant(6.0)
c = a * b

print(sess.run(c)) 

