/*
 * Riddle.java
 *
 * Created on October 23, 2007, 9:17 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package oop;

/**
 *
 * @author student
 */
public class Riddle {
    public String question,answer;
    
    
    /** Creates a new instance of Riddle */
    public Riddle(String question,String answer) {
        this.question=question;
        this.answer=answer;
    }
    public String getQuestion() {
        return question; }
    public String getAnswer() {
        return answer; }
}
