1*9a7741deSElliott Hughes{ 2*9a7741deSElliott Hughes print $0, ($0 <= 50 ? "<=" : ">"), 50 3*9a7741deSElliott Hughes getline dd < ARGV[1] 4*9a7741deSElliott Hughes print dd, (dd <= 50 ? "<=" : ">"), 50 5*9a7741deSElliott Hughes if (dd == $0) print "same" 6*9a7741deSElliott Hughes} 7