language: Fortran (gfortran-4.3.4)
date: 128 days 18 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
real a, b, pole
write(*,*) 'Podaj a'
a=2
write(*,*) 'Podaj b'
b=5
pole = a*b
write(*,*) 'Pole = ', pole
end