Advertisement
Josif_tepe

Untitled

Sep 28th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. def main():
  2.     x = input("Vnesi vrednost na x: ")
  3.     print(x)
  4.  
  5.     y = input("Vnesi vrednost za y: ")
  6.     print(y)
  7.  
  8.     print(int(x) + int(y))
  9.  
  10.  
  11. if __name__ == "__main__":
  12.     main()
  13.  
  14.  
  15.  
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement