
import os
import tensorflow as tf
a = tf.constant(2)
b = tf.constant(3)
x = tf.add(a, b)
print(x)


#with tf.Session() as sess:
 #   writer = tf.summary.FileWriter('./graphs22', sess.graph)
  #  print (sess.run(x))

#writer.close()

#os.system('tensorboard --logdir=./graphs22 --port 6006' )
