Відповідь:
Пояснення:
x=int(input())
a=x%10
b=x//10
if a==1 and b!=1:
print(x, “гривня”)
elif (a==2 or a==3 or a==4 and b!=1):
print(x, “гривні”)
else:
print(x, “гривень”)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
Пояснення:
x=int(input())
a=x%10
b=x//10
if a==1 and b!=1:
print(x, “гривня”)
elif (a==2 or a==3 or a==4 and b!=1):
print(x, “гривні”)
else:
print(x, “гривень”)