Skip to content

Commit

Permalink
Merge pull request Aniket965#560 from dumbcoder2399/master
Browse files Browse the repository at this point in the history
added add_complex_nos
  • Loading branch information
Aniket965 authored Oct 7, 2018
2 parents 9ca87a3 + 0c9d081 commit b4f35a8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Python/add_complex_nos.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
x1=int(input())
y1=int(input())
x2=int(input())
y2=int(input())

x=x1+x2
y=y1+y2


print("%d + %di" % (x,y))

0 comments on commit b4f35a8

Please sign in to comment.