import java.io.*;
class pq
{
public static void main(String args[]) throws IOException
{
temp tm = new temp();
FileOutputStream fos = new FileOutputStream("d:\\txt");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(tm);

}
}
class temp
{
public static int a;
public transient int b;
public int c;
public temp()
{
a = 5;
b = 6;
c = 7;
}
}