document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Time
  2. {
  3.     int r_time = 10,y_time = 3,g_time = 5;
  4.     public int Red()
  5.     {
  6.         return r_time;
  7.     }
  8.     public int Yellow()
  9.     {
  10.         return y_time;
  11.     }
  12.     public int Green()
  13.     {
  14.         return g_time;
  15.     }
  16. }
');