# x,y,z = input().split(':')
# print(y)
# _______________________________________
# x,y =input().split(' ')
# print(x,y,sep='')
# _______________________________________
# x,y = input().split(' ')
# z= int(x)+int(y)
# print(z)
# _______________________________________
# x = float(input())
# y = float(input())
# z = float(x)+float(y)
# print(z)
# _______________________________________
# x = input()
# y = int(x)
# print('%x'% y)
# _______________________________________
# x = input()
# y = int(x)
# print('%X'% y)
# _______________________________________
# x = input()
# y = int(x,16)
# print('%o'% y)
# _______________________________________
# x = ord(input()) ord(x) 유니코드로 받는다
# print(x)
# _______________________________________
# x=int(input())
# print(chr(x)) chr(x) 반대로 변환시켜서 출력
# _______________________________________
# x=int(input())
# print(-x)
# _______________________________________
# x = input()
# x = ord(x)
# print(chr(x+1))
# _______________________________________
# x,y = input().split()
# z=int(x)-int(y)
# print(z)
# _______________________________________
# 산술연산자: + - * / % ... , // **
# print(10 // 3)
# /: 나누기 연산자
# //: 몫 연산자
# print(2 ** 5)
# _______________________________________
# x,y = input().split()
# z=float(x)*float(y)
# print(z)
# _______________________________________
# x, y = input().split()
# print(x*int(y))
# _______________________________________
# x=input()
# y=input()
# print(int(x)*y)
# _______________________________________
# x,y = input().split()
# x = int(x)
# y = int(y)
# z= x**y
# print(z)
# _______________________________________
# x,y = input().split()
# x = float(x)
# y = float(y)
# z= x**y
# print(z)
# _______________________________________
# x, y = input().split()
# x = int(x)
# y = int(y)
# z = x//y
# print(z)
# _______________________________________
# x, y = input().split()
# x = int(x)
# y = int(y)
# z = x%y
# print(z)
# _______________________________________
# x=input()
# x=float(x)
# print(format(x, ".2f"))
# _______________________________________
# x,y =input().split()
# x=float(x)
# y=float(y)
# z=x/y
# print(format(z, ".3f"))
# _______________________________________
# x,y =input().split()
# x=int(x)
# y=int(y)
# z=x+y
# c=x-y
# v=x*y
# b=x//y
# n=x%y
# m=x/y
# print(z,c,v,b,n,format(m, ".2f"),sep='\n')
# _______________________________________
x,y,z=input().split()
x = int(x)
y = int(y)
z = int(z)
c=x+y+z
v=(x+y+z)/3
v=float(v)
print(c,format(v, ".2f"),sep=' ')
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
# _______________________________________
top of page

기능을 테스트하려면 라이브 사이트로 이동하세요.
파이썬
파이썬
댓글 0개
좋아요
댓글(0)
bottom of page