#Assignment 1 R Workshop
##Do the following calculations in R
x<-(5*4)^(4*5)-56
z<-23-1*(8-12)
y<-56/8*(3+4)
d<-45-5*8+(8+9)
print(x)
## [1] 1.048576e+26
print(y)
## [1] 49
print(z)
## [1] 27
print(d)
## [1] 22
##Create the following vectors a, b, and c
a<-c(2,5,6,7)
b<-c(1,0,9,8)
c<-c(6,5,8,3)
print(a)
## [1] 2 5 6 7
print(b)
## [1] 1 0 9 8
print(c)
## [1] 6 5 8 3