fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct A{
  5. static void G(){
  6. cout <<"G";
  7. }
  8. };
  9.  
  10. int main() {
  11. // your code goes here
  12. A::G();
  13. return 0;
  14. }
Success #stdin #stdout 0s 4492KB
stdin
Standard input is empty
stdout
G