fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class CTest
  5. {
  6. public:
  7. void topkek(int a);
  8. int topkek(int a,int b)
  9. {
  10. return a+b;
  11. }
  12. };
  13. int main() {
  14. CTest test;
  15. cout<<test.topkek(2,2)<<endl;
  16. return 0;
  17. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
4