data response;
Input cat $ time;
datalines;
c 80
c 93
c 83
c 89
c 98
t 100
t 103
t 104
t 109
t 99
t 102
;

proc ttest data=response;
Title 'T-test';
class cat;
var time;
run;

proc npar1way data=response;
title 'Wilcoxon rank sum test';
class cat;
var time;
*Exact wilcoxon;
run;