week 1 (2)

PHOTO EMBED

Tue Jul 09 2024 14:14:58 GMT+0000 (Coordinated Universal Time)

Saved by @pvignesh

a=int(input("enter a"))
b=int(input("enter b"))
o=input("enter the o")
if(o=='+'):
    print(a+b)
if(o=='-'):
    print(a-b)
if(o=='/'):
    print(a/b)
if(o=='*'):
    print(a*b)
content_copyCOPY