Skip to content
Snippets Groups Projects
5args.e 87 B
main(x, y){
  return f(x,x,y,y,x*2);
}
f(x, y, z, t, u){
  return x + y + z + t + u;
}