import com.paperinput.*;
public class Main {
public static void main(String[] args) {
Form form = new Form();
form.addField(new TextField("name", "Name"));
form.addField(new NumberField("age", "Age"));
form.addField(new DateField("dob", "Date of Birth"));
form.processInput();
String name = form.getFieldValue("name");
int age = form.getFieldValue("age");
Date dob = form.getFieldValue("dob");
}
}