fork download
  1. using static System.DateTime;
  2. using static System.Console;
  3. WriteLine(DaysInMonth(2023, 04));
  4. WriteLine(DaysInMonth(2020, 02));
  5. WriteLine(DaysInMonth(2023, 02));
  6.  
  7. //https://pt.stackoverflow.com/q/580898/101
Success #stdin #stdout 0.04s 25000KB
stdin
Standard input is empty
stdout
30
29
28