import std.stdio; 
import std.typetuple; 

alias TypeTuple!(int, long) TL; 

void method1(TL tl) { 
   writeln(tl[0],"\t", tl[1] ); 
} 

void main() { 
   method1(5, 6L);    
}