#include <iostream>
using namespace std;
struct node
{
int x;
int y;
};
void MyFunc() {
node n; //The structs and classes in C++ are auto constructed, so declaring
//group g;, it's JASS equivalent to: local group g = CreateGroup().
n.x = 20;
n.y = 10;
cout<<n.x<<" "<<n.y<<endl; //prints both numbers into command pront
}
int main() {
MyFunc();
}