From 9ec895933b7049fd14c125abeba58bea368445ae Mon Sep 17 00:00:00 2001 From: pranav-kalvium Date: Tue, 20 Aug 2024 17:31:33 +0530 Subject: [PATCH 1/3] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 8990375..36d8960 100644 --- a/index.html +++ b/index.html @@ -12,8 +12,8 @@ -

Hi, I am John Doe, I am a Kalvian.

+

Hi, I am PRANAVPCSE, I am a Kalvian.

- \ No newline at end of file + From f3b7fc3059f2339ff04193df47a1dfb571edd6a9 Mon Sep 17 00:00:00 2001 From: pranav-kalvium Date: Tue, 20 Aug 2024 17:38:29 +0530 Subject: [PATCH 2/3] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 36d8960..695dfef 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@ -

Hi, I am PRANAVPCSE, I am a Kalvian.

+

Hi, I am VEDANT I am a Kalvian.

From ccfaa6c90b31612908a870b5f14d78af637cae7d Mon Sep 17 00:00:00 2001 From: pranav-kalvium Date: Wed, 16 Oct 2024 10:09:57 +0530 Subject: [PATCH 3/3] Add files via upload --- main2.py | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 main2.py diff --git a/main2.py b/main2.py new file mode 100644 index 0000000..a63d1eb --- /dev/null +++ b/main2.py @@ -0,0 +1,81 @@ +# weight,height=map(eval,input().split()) +# bmi=weight/(height*height) +# if bmi>0: +# print(bmi) +# else : +# print("invalid input") + +# p=float(input()) +# r=float(input()) +# t=float(input()) +# SI = (p*r*t)/100 +# if SI < 0: +# print("invalid input") +# else: +# print(SI) + +# import math +# radius=float(input()) +# area=math.pi*radius**2 +# if radius<0: +# print("input cant be a negative number") +# else: +# print(area) + + +# distance,time=map(eval,input().split()) +# acc=(2*distance)/(time**2) +# if distance <0 or time <0 : +# print ("invalid input") +# else: +# print(acc) + + +# rows = int(input()) +# for i in range(0,rows): +# if rows<0: +# print('invalid input') +# else: +# print(' ' * (rows - i - 1) + '* ' * (i + 1)) + +# km = float(input()) +# miles = 0.62*km +# if km<0: +# print("wrong input") +# else: +# print(miles) + + +# force,distance=map(eval,input().split()) +# joule=force*distance +# if force <0 or distance <0 : +# print("wrong input") +# else: +# print(joule , "joules") + + +# import math +# math.sqrt +# x1 = int(input()) +# x2 = int(input()) +# y1 = int(input()) +# y2 = int(input()) +# point_a = ((x2-x1)**2) +# point_b = ((y2-y1)**2) +# d=(math.sqrt(point_a+point_b)) +# print(d) + + +cents = float(input()) +dollars = cents // 100 +cents %= 100 +quarters = cents // 25 +cents %= 25 +pennies = cents % 5 +print(f"Dollars: {dollars}, Quarters: {quarters}, Pennies: {pennies}") + + + + + +