In [1]:
import tensorflow as tf
print(tf.__version__)
2.0.0
In [2]:
a = tf.constant(3.0)
b = tf.constant(5.0)

c = a*b
In [3]:
print(c)
tf.Tensor(15.0, shape=(), dtype=float32)