Class1.cs 324 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ClassLibrary1
  7. {
  8. public class Class1
  9. {
  10. public int reyting(int kol, int id)
  11. {
  12. int reyt;
  13. reyt = kol + id;
  14. return reyt;
  15. }
  16. }
  17. }