What will be the output of the following code snippet?
import math as m a = 2.19 b=3.999999 c= -3.30 print(int(a), m.floor(b), m.ceil(c), m.fabs(c))
निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?