I have an piece of code,
In[1]: InputForm[N[Pi]]
Out[1]: 3.141592653589793
In[2]: y = N[Pi]*10^(-10);
In[3]: InputForm[y]
Out[3]: 3.1415926535897934*^-10
In[4]: z = 1. + y;
In[5]: InputForm[z]
Out[5]: 1.0000000003141594
In[6]: InputForm[z - 1.]
Out[6]: 3.141593651889707*^-10
that I would like to include in a Latex Document.
How can I export Mathematica code to include in Latex ?