#5314

BÀI TẬP :   85

  1. s=input()
  2. a=s.split()
  3. for i in range(0,len(a)-1):
  4.     print(a[i],end=” “)

BÀI TẬP :   86

  • import math
  • def nhap():
  •     a,b,c=map(float,input().split())
  •     return a,b,c
  • #
  • def chuvi(a,b,c):
  •     return a+b+c
  • #
  • def dientich(a,b,c):
  •     p=chuvi(a,b,c)/2
  •     return math.sqrt(p*(p-a)*(p-b)*(p-c))
  • #
  • a,b,c=nhap()
  • print(“%0.1f”%chuvi(a,b,c),”%0.3f”%dientich(a,b,c))

 

BÀI TẬP :   87

  • def nhap():
  •     n=int(input())
  •     return n
  • def chia5(n):
  •     if n%5==0:
  •         return “Yes”
  •     else:
  •         return “No”
  • n=nhap()
  • print(chia5(n))

BÀI TẬP :   88

  1. def ucln(a,b):
  2.     while a!=b:
  3.         if a>b:
  4.             a=a-b
  5.         else:
  6.             b=b-a
  7.     return a
  8. #
  9. def nhap():
  10.     t,m=map(int,input().split())
  11.     return t,m
  12. #
  13. def RG(t,m):
  14.     x=ucln(t,m)
  15.     t//=x
  16.     m//=x
  17.     return t,m
  18. #
  19. t,m=nhap()
  20. t,m=RG(t,m)
  21. print(t,”/”,m,sep=””)