from tkinter import *
def func1(eve):
a=int(input('Увести a: '))
b=int (input('Увести b: '))
print ("a+b= ", a+b)
def func2 (FFF):
c=int(input('Увести c: '))
d=int(input('Увести d: '))
print ("c+d= ", c*d)
root=Tk ()
root ['bg']='red'
but1=Button(root)
but1['text']='Прибавить'
but1=Button(root, text='Прибавить',
bg='black', fg='green', width=18, height=2, font='Arial 14')
but1.bind('<Button>', func1)
but2=Button(root)
but2['text']='Умножить'
but2.bind('<Button>', func2)
but2.pack()
but1.pack()
root.mainloop()
from tkinter import *
def func1(eve):
a=int(input('Увести a: '))
b=int (input('Увести b: '))
print ("a+b= ", a+b)
def func2 (FFF):
c=int(input('Увести c: '))
d=int(input('Увести d: '))
print ("c+d= ", c*d)
root=Tk ()
root ['bg']='red'
but1=Button(root)
but1['text']='Прибавить'
but1=Button(root, text='Прибавить',
bg='black', fg='green', width=18, height=2, font='Arial 14')
but1.bind('<Button>', func1)
but2=Button(root)
but2['text']='Умножить'
but2.bind('<Button>', func2)
but2.pack()
but1.pack()
root.mainloop()